Home | History | Annotate | Download | only in tests

Lines Matching refs:Reporter

26 static void test_uvs(skiatest::Reporter* reporter) {
36 REPORTER_ASSERT(reporter, uvs0 == uvs1);
44 static void test_textencodings(skiatest::Reporter* reporter) {
72 REPORTER_ASSERT(reporter, (int)len8 == count8);
73 REPORTER_ASSERT(reporter, (int)len8 == count16);
74 REPORTER_ASSERT(reporter, (int)len8 == count32);
76 REPORTER_ASSERT(reporter, !memcmp(glyphs8, glyphs16, count8 * sizeof(uint16_t)));
77 REPORTER_ASSERT(reporter, !memcmp(glyphs8, glyphs32, count8 * sizeof(uint16_t)));
80 DEF_TEST(Unicode, reporter) {
81 test_uvs(reporter);
82 test_textencodings(reporter);