Home
last modified time | relevance | path

Searched refs:testNames (Results 1 – 11 of 11) sorted by relevance

/third_party/skia/modules/pathkit/tests/
Dpathops.spec.js117 let testNames = Object.keys(json);
119 expect(testNames.length > 0).toBeTruthy();
120 testNames.sort();
121 for (testName of testNames) {
176 let testNames = Object.keys(json);
178 expect(testNames.length > 0).toBeTruthy();
179 testNames.sort();
180 for (testName of testNames) {
/third_party/flutter/skia/modules/pathkit/tests/
Dpathops.spec.js117 let testNames = Object.keys(json);
119 expect(testNames.length > 0).toBeTruthy();
120 testNames.sort();
121 for (testName of testNames) {
176 let testNames = Object.keys(json);
178 expect(testNames.length > 0).toBeTruthy();
179 testNames.sort();
180 for (testName of testNames) {
/third_party/skia/third_party/externals/angle2/src/tests/gles_conformance_tests/
Dgenerate_gles_conformance_tests.py32 def GenerateTests(outFile, testNames): argument
34 testNames = list(set(testNames))
39 for test in testNames:
/third_party/flutter/skia/third_party/externals/angle2/src/tests/gles_conformance_tests/
Dgenerate_gles_conformance_tests.py32 def GenerateTests(outFile, testNames): argument
34 testNames = list(set(testNames))
39 for test in testNames:
/third_party/flutter/flutter/dev/devicelab/test/
Drun_test.dart17 Future<ProcessResult> runScript(List<String> testNames) async {
22 for (String testName in testNames) ...<String>['-t', testName],
27 Future<void> expectScriptResult(List<String> testNames, int expectedExitCode) async {
28 final ProcessResult result = await runScript(testNames);
/third_party/python/Lib/unittest/
Dmain.py136 self.testNames = _convert_names(self.tests)
142 self.testNames = None
144 self.testNames = (self.defaultTest,)
146 self.testNames = list(self.defaultTest)
155 elif self.testNames is None:
158 self.test = self.testLoader.loadTestsFromNames(self.testNames,
/third_party/python/Lib/unittest/test/
Dtest_program.py88 self.assertEqual(('unittest.test',), program.testNames)
105 program.testNames)
364 self.assertEqual(program.testNames, expected)
376 self.assertEqual(program.testNames, expected)
387 self.assertEqual(program.testNames, argv[1:])
401 self.assertEqual(program.testNames, expected)
412 self.assertEqual(program.testNames, argv[1:])
/third_party/icu/icu4c/source/test/cintltst/
Dcucdapi.c52 const char* testNames[]={ in TestUScriptCodeAPI() local
104 for( ; testNames[i]!=NULL; i++){ in TestUScriptCodeAPI()
106 uscript_getCode(testNames[i],script,capacity, &err); in TestUScriptCodeAPI()
109 script[0],expected[i],testNames[i]); in TestUScriptCodeAPI()
/third_party/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/
DPerfTest.java471 Set testNames = testProvider.getAllTestCmdNames(); in parseOptions() local
472 for (Iterator iter = testNames.iterator(); iter.hasNext();) { in parseOptions()
545 Set testNames = testProvider.getAllTestCmdNames(); in parseOptions() local
546 Iterator iter = testNames.iterator(); in parseOptions()
/third_party/typescript_eslint/packages/typescript-estree/tests/lib/
DpersistentParse.test.ts330 const testNames = ['object', 'number', 'string', 'foo'] as const; constant
331 for (const name of testNames) {
/third_party/skia/third_party/externals/angle2/src/tests/test_utils/runner/
DTestSuite.cpp954 const std::vector<std::string> &testNames = testSuiteIt.second; in GTestListTests() local
956 for (const std::string &testName : testNames) in GTestListTests()