Lines Matching refs:reporter
43 DEF_GRAPHITE_TEST_FOR_CONTEXTS(UniformCacheTest, reporter, context) {
48 REPORTER_ASSERT(reporter, cache->count() == 0);
55 REPORTER_ASSERT(reporter, result1->id() != UniformData::kInvalidUniformID);
56 REPORTER_ASSERT(reporter, ud1->id() == result1->id());
58 REPORTER_ASSERT(reporter, lookup->id() == result1->id());
60 REPORTER_ASSERT(reporter, cache->count() == 1);
67 REPORTER_ASSERT(reporter, result2->id() != UniformData::kInvalidUniformID);
68 REPORTER_ASSERT(reporter, ud2->id() == UniformData::kInvalidUniformID);
69 REPORTER_ASSERT(reporter, result2->id() == result1->id());
71 REPORTER_ASSERT(reporter, lookup->id() == result2->id());
73 REPORTER_ASSERT(reporter, cache->count() == 1);
80 REPORTER_ASSERT(reporter, result3->id() != UniformData::kInvalidUniformID);
81 REPORTER_ASSERT(reporter, ud3->id() == result3->id());
82 REPORTER_ASSERT(reporter, result3->id() != result1->id());
84 REPORTER_ASSERT(reporter, lookup->id() == result3->id());
86 REPORTER_ASSERT(reporter, cache->count() == 2);