Home | History | Annotate | Download | only in tests

Lines Matching refs:REPORTER_ASSERT

25     REPORTER_ASSERT(r, !pattern.match(&record, 0));
31 REPORTER_ASSERT(r, !pattern.match(&record, 0));
34 REPORTER_ASSERT(r, !pattern.match(&record, 0));
37 REPORTER_ASSERT(r, pattern.match(&record, 0));
38 REPORTER_ASSERT(r, pattern.first<Save>() != nullptr);
39 REPORTER_ASSERT(r, pattern.second<ClipRect>() != nullptr);
40 REPORTER_ASSERT(r, pattern.third<Restore>() != nullptr);
59 REPORTER_ASSERT(r, pattern.match(&record, i) == i + 3);
61 REPORTER_ASSERT(r, !pattern.match(&record, i));
77 REPORTER_ASSERT(r, !pattern.match(&record, 0));
90 REPORTER_ASSERT(r, pattern.match(&record, index));
97 REPORTER_ASSERT(r, pattern.match(&record, index));
115 REPORTER_ASSERT(r, pattern.match(&record, 0) == record.count());
117 REPORTER_ASSERT(r, pattern.search(&record, &begin, &end));
118 REPORTER_ASSERT(r, begin == start);
119 REPORTER_ASSERT(r, end == record.count());
126 REPORTER_ASSERT(r, !pattern.match(&record, start));
128 REPORTER_ASSERT(r, !pattern.search(&record, &begin, &end));
135 REPORTER_ASSERT(r, pattern.match(&record, start) == record.count());
137 REPORTER_ASSERT(r, pattern.search(&record, &begin, &end));
138 REPORTER_ASSERT(r, begin == start);
139 REPORTER_ASSERT(r, end == record.count());
141 REPORTER_ASSERT(r, !pattern.search(&record, &begin, &end));
151 REPORTER_ASSERT(r, !pattern.match(&record, 0));