HomeSort by relevance Sort by last modified time
    Searched refs:testCases (Results 1 - 25 of 30) sorted by null

1 2

  /frameworks/base/test-runner/tests/src/android/test/
AndroidTestRunnerTest.java 53 List<TestCase> testCases = mAndroidTestRunner.getTestCases();
54 assertNotNull(testCases);
55 assertEquals(1, testCases.size());
56 assertEquals("warning", testCases.get(0).getName());
63 List<TestCase> testCases = mAndroidTestRunner.getTestCases();
64 assertNotNull(testCases);
65 assertEquals(1, testCases.size());
66 assertEquals("testOne", testCases.get(0).getName());
107 List<TestCase> testCases = mAndroidTestRunner.getTestCases();
108 for (TestCase testCase : testCases) {
    [all...]
  /external/webkit/Tools/Scripts/webkitperl/VCSUtils_unittest/
prepareParsedPatch.pl 52 my @testCases = (
124 my $testCasesCount = @testCases;
127 foreach my $testCase (@testCases) {
  /external/libphonenumber/java/test/com/android/i18n/phonenumbers/
PhoneNumberMatcherTest.java 444 List<NumberTest> testCases = new ArrayList<NumberTest>();
445 testCases.addAll(Arrays.asList(STRICT_GROUPING_CASES));
446 testCases.addAll(Arrays.asList(EXACT_GROUPING_CASES));
447 testCases.addAll(Arrays.asList(VALID_CASES));
448 testCases.addAll(Arrays.asList(POSSIBLE_ONLY_CASES));
449 doTestNumberMatchesForLeniency(testCases, Leniency.POSSIBLE);
453 List<NumberTest> testCases = new ArrayList<NumberTest>();
454 testCases.addAll(Arrays.asList(IMPOSSIBLE_CASES));
455 doTestNumberNonMatchesForLeniency(testCases, Leniency.POSSIBLE);
459 List<NumberTest> testCases = new ArrayList<NumberTest>()
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
InetSocketAddressTest.java 111 Object[] testCases = {
115 SerializationTest.verifySelf(testCases, COMPARATOR);
123 Object[] testCases = {
127 SerializationTest.verifyGolden(this, testCases, COMPARATOR);
  /external/icu4c/test/cintltst/
cg7coll.c 67 const static UChar testCases[][MAX_TOKEN_LEN] = {
182 doTest(tblColl1, testCases[results[i][j]], testCases[results[i][n]], UCOL_LESS);
215 doTest(myCollation, testCases[results[8][j]], testCases[results[8][n]], UCOL_LESS);
245 doTest(myCollation, testCases[results[9][j]], testCases[results[9][n]], UCOL_LESS);
275 doTest(myCollation, testCases[results[10][j]], testCases[results[10][n]], UCOL_LESS);
304 doTest(myCollation, testCases[results[11][j]], testCases[results[11][n]], UCOL_LESS)
    [all...]
putiltst.c 294 const char *testCases[] = {
309 for(j=0;testCases[j]!=NULL;j+=3) {
310 v1str = testCases[j+0];
311 opstr = testCases[j+1];
312 v2str = testCases[j+2];
539 } testCases[] = {
557 int32_t count=(sizeof(testCases)/sizeof(testCases[0]));
564 const char *input = STRNULL(testCases[i].inBuf);
565 const char *expect = STRNULL(testCases[i].expectResult)
    [all...]
cloctst.c     [all...]
capitst.c     [all...]
calldata.h 92 const UChar testCases[][4] =
cbiditst.c     [all...]
ncnvtst.c     [all...]
  /external/icu4c/test/intltest/
g7coll.cpp 19 static const UChar testCases[][G7CollationTest::MAX_TOKEN_LEN] = {
149 doTest(tblColl1, testCases[results[i][j]], testCases[results[i][n]], Collator::LESS);
184 doTest(myCollation, testCases[results[8][j]], testCases[results[8][n]], Collator::LESS);
218 doTest(myCollation, testCases[results[9][j]], testCases[results[9][n]], Collator::LESS);
252 doTest(myCollation, testCases[results[10][j]], testCases[results[10][n]], Collator::LESS);
281 doTest(myCollation, testCases[results[11][j]], testCases[results[11][n]], Collator::LESS)
    [all...]
loctest.cpp     [all...]
allcoll.cpp 138 doTest(myCollation, testCases[i], testCases[j], Collator::LESS);
ssearch.cpp 374 UdhrTestCase testCases[] = {
386 int32_t testCount = ARRAY_SIZE(testCases);
394 ucbuf_resolveFileName(udhrPath, testCases[t].file, NULL, &len, &status);
405 ucbuf_resolveFileName(udhrPath, testCases[t].file, resolvedFileName, &len, &status);
411 infoln("Could not open the input file %s. Test skipped\n", testCases[t].file);
437 UCollator *coll = ucol_open(testCases[t].locale, &status);
442 errln("Could not open collator for %s", testCases[t].locale);
449 errln("Could not open CollData object for %s", testCases[t].locale);
456 errln("Could not open search object for %s", testCases[t].locale);
466 errln("Could not find pattern - locale: %s, file: %s ", testCases[t].locale, testCases[t].file)
    [all...]
tmsgfmt.cpp 255 UnicodeString testCases[] = {
267 // ICU 4.8 returns the original pattern (testCases),
295 //it_out << "\nPat in: " << testCases[i]);
300 form = new MessageFormat(testCases[i], Locale::getUS(), success);
303 logln(((UnicodeString)"MessageFormat for ") + testCases[i] + " creation failed.\n");
306 // ICU 4.8 returns the original pattern (testCases),
308 if (form->toPattern(buffer) != testCases[i]) {
315 errln(((UnicodeString)" Orig: ") + testCases[i]);
316 errln(((UnicodeString)" Exp: ") + testCases[i]);
    [all...]
uts46test.cpp 244 static const TestCase testCases[]={
560 for(i=0; i<LENGTHOF(testCases); ++i) {
561 const TestCase &testCase=testCases[i];
    [all...]
  /frameworks/base/test-runner/src/android/test/
TestCaseUtil.java 59 List<Test> testCases = Lists.newArrayList();
83 testCases.addAll(getTests(childTest, flatten, seen));
85 testCases.add(childTest);
89 testCases.add(workingTest);
92 return testCases;
  /frameworks/base/test-runner/src/android/test/suitebuilder/
TestSuiteBuilder.java 49 private List<TestCase> testCases;
70 this.testCases = Lists.newArrayList();
82 this.testCases.addAll(atr.getTestCases());
89 this.testCases.add(testCase);
187 if (testCases.size() > 0) {
188 for (TestCase testCase : testCases) {
  /cts/tools/utils/
CollectAllTests.java 186 Map<String,TestClass> testCases = new LinkedHashMap<String, TestClass>();
217 addToTests(expectations, testCases, klass.asSubclass(TestCase.class));
227 addToTests(expectations, testCases, klass.asSubclass(TestCase.class));
242 for (Iterator<TestClass> iterator = testCases.values().iterator(); iterator.hasNext();) {
375 Map<String,TestClass> testCases,
399 addToTests(expectations, testCases, test, testName);
406 Map<String,TestClass> testCases,
434 if (testCases.containsKey(testClassName)) {
435 testClass = testCases.get(testClassName);
438 testCases.put(testClassName, testClass)
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
EnumTest.java 227 Object[] testCases = { enumColorMap, Sample.CURLY };
229 SerializationTest.verifySelf(testCases);
256 Object[] testCases = { Sample.CURLY, new MockEnum(),
262 SerializationTest.verifyGolden(this, testCases);
  /frameworks/testing/uiautomator/library/src/com/android/uiautomator/testrunner/
UiAutomatorTestRunner.java 104 List<TestCase> testCases = collector.getTestCases();
113 testRunResult.addListener(new WatcherResultPrinter(testCases.size()));
122 for (TestCase testCase : testCases) {
  /external/compiler-rt/test/Unit/ppc/
fixtfdi_test.c 12 const struct testVector testCases[] = {
450 const int numTestCases = sizeof(testCases) / sizeof(struct testVector);
461 input.hi = testCases[i].xhi;
462 input.lo = testCases[i].xlo;
463 expected_result = testCases[i].result;
  /frameworks/compile/libbcc/runtime/test/Unit/ppc/
fixtfdi_test.c 12 const struct testVector testCases[] = {
450 const int numTestCases = sizeof(testCases) / sizeof(struct testVector);
461 input.hi = testCases[i].xhi;
462 input.lo = testCases[i].xlo;
463 expected_result = testCases[i].result;
  /hardware/ti/omap3/omx/audio/src/openmax_il/g722_dec/tests/
G722DecTest.c 137 OMX_ERRORTYPE testCases (OMX_HANDLETYPE *, fd_set *,int, FILE *, FILE *, int *, int *, struct timeval *, int, int, OMX_BUFFERHEADERTYPE *[], int, OMX_BUFFERHEADERTYPE *[]);
434 error = testCases (pHandle, &rfds, tcID, fIn, fOut, &frmCnt, &totalFilled, &tv, gDasfMode, nIpBuffs, pInputBufferHeader, nOpBuffs, pOutputBufferHeader);
436 printf ("<<<<<<<<<<<<<< testCases fault exit >>>>>>>>>>>>>>\n");
    [all...]

Completed in 1267 milliseconds

1 2