Lines Matching refs:REPORTER_ASSERT
18 REPORTER_ASSERT(reporter, a.empty()); in TestTSet_basic()
19 REPORTER_ASSERT(reporter, a.count() == 0); in TestTSet_basic()
23 REPORTER_ASSERT(reporter, !a.empty()); in TestTSet_basic()
24 REPORTER_ASSERT(reporter, a.count() == 1); in TestTSet_basic()
28 REPORTER_ASSERT(reporter, a.empty()); in TestTSet_basic()
29 REPORTER_ASSERT(reporter, a.count() == 0); in TestTSet_basic()
33 REPORTER_ASSERT(reporter, a.push_back() = 1); in TestTSet_basic()
35 REPORTER_ASSERT(reporter, !a.empty()); in TestTSet_basic()
36 REPORTER_ASSERT(reporter, a.count() == 1); in TestTSet_basic()
37 REPORTER_ASSERT(reporter, a[0] == 1); in TestTSet_basic()
42 REPORTER_ASSERT(reporter, a.count() == SK_ARRAY_COUNT(b)); in TestTSet_basic()
43 REPORTER_ASSERT(reporter, a[2] == 2); in TestTSet_basic()
44 REPORTER_ASSERT(reporter, a[4] == 4); in TestTSet_basic()
48 REPORTER_ASSERT(reporter, a.count() == SK_ARRAY_COUNT(b) - 1); in TestTSet_basic()
49 REPORTER_ASSERT(reporter, a[3] == 3); in TestTSet_basic()
53 REPORTER_ASSERT(reporter, a.count() == SK_ARRAY_COUNT(b) - 2); in TestTSet_basic()
54 REPORTER_ASSERT(reporter, a[0] == 0); in TestTSet_basic()
55 REPORTER_ASSERT(reporter, a[1] == 3); in TestTSet_basic()
56 REPORTER_ASSERT(reporter, a[2] == 2); in TestTSet_basic()
91 REPORTER_ASSERT(reporter, kSizes[dataSizeA] == b->count()); in test_swap()
92 REPORTER_ASSERT(reporter, kSizes[dataSizeB] == a->count()); in test_swap()
95 REPORTER_ASSERT(reporter, curr++ == (*b)[i]); in test_swap()
98 REPORTER_ASSERT(reporter, curr++ == (*a)[i]); in test_swap()
105 REPORTER_ASSERT(reporter, curr++ == (*a)[i]); in test_swap()