Lines Matching refs:testCase
199 for (auto testCase : testCases) { in TEST_F() local
201 HB_TAG(testCase.requestedScript[0], testCase.requestedScript[1], in TEST_F()
202 testCase.requestedScript[2], testCase.requestedScript[3])); in TEST_F()
203 if (testCase.isSupported) { in TEST_F()
205 createFontLanguage(testCase.baseScript).supportsHbScript(script)) in TEST_F()
206 << testCase.baseScript << " should support " << testCase.requestedScript; in TEST_F()
209 createFontLanguage(testCase.baseScript).supportsHbScript(script)) in TEST_F()
210 << testCase.baseScript << " shouldn't support " << testCase.requestedScript; in TEST_F()
401 for (auto testCase : testCases) { in TEST_F() local
402 SCOPED_TRACE(testCase.hasVSTable ? in TEST_F()
403 "Font " + testCase.fontPath + " should have a variation sequence table." : in TEST_F()
404 "Font " + testCase.fontPath + " shouldn't have a variation sequence table."); in TEST_F()
406 MinikinAutoUnref<MinikinFontForTest> minikinFont(new MinikinFontForTest(testCase.fontPath)); in TEST_F()
412 EXPECT_EQ(testCase.hasVSTable, family->hasVSTable()); in TEST_F()