HomeSort by relevance Sort by last modified time
    Searched refs:testCases (Results 1 - 25 of 43) 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/icu4c/test/cintltst/
putiltst.c 291 const char *testCases[] = {
306 for(j=0;testCases[j]!=NULL;j+=3) {
307 v1str = testCases[j+0];
308 opstr = testCases[j+1];
309 v2str = testCases[j+2];
486 } testCases[] = {
504 int32_t count=(sizeof(testCases)/sizeof(testCases[0]));
511 const char *input = STRNULL(testCases[i].inBuf);
512 const char *expect = STRNULL(testCases[i].expectResult)
    [all...]
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...]
cloctst.c     [all...]
capitst.c     [all...]
calldata.h 92 const UChar testCases[][4] =
  /external/chromium/third_party/icu/source/test/cintltst/
cg7coll.c 67 const static UChar testCases[][MAX_TOKEN_LEN] = {
178 doTest(tblColl1, testCases[results[i][j]], testCases[results[i][n]], UCOL_LESS);
211 doTest(myCollation, testCases[results[8][j]], testCases[results[8][n]], UCOL_LESS);
241 doTest(myCollation, testCases[results[9][j]], testCases[results[9][n]], UCOL_LESS);
271 doTest(myCollation, testCases[results[10][j]], testCases[results[10][n]], UCOL_LESS);
300 doTest(myCollation, testCases[results[11][j]], testCases[results[11][n]], UCOL_LESS)
    [all...]
cloctst.c     [all...]
putiltst.c 275 const char *testCases[] = {
290 for(j=0;testCases[j]!=NULL;j+=3) {
291 v1str = testCases[j+0];
292 opstr = testCases[j+1];
293 v2str = testCases[j+2];
capitst.c     [all...]
calldata.h 92 const UChar testCases[][4] =
cbiditst.c     [all...]
  /external/chromium/third_party/icu/source/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);
  /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);
  /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;
  /cts/tools/host/src/com/android/cts/
TestSuite.java 87 * Get TestCases.
89 * @return TestCases
226 ArrayList<TestCase> testCases = new ArrayList<TestCase>();
227 testCases.addAll(mTestCases);
229 testCases.addAll(subSuite.getAllTestCases());
232 return testCases;
274 Iterator<TestCase> testCases = getTestCases().iterator();
285 while (testCases.hasNext() && (!mTestStop)) {
286 mCurrentTestCase = testCases.next();
Selector.java 292 public TestCaseSelector(List<String> testCases, TestPackage testPackage) {
293 super(CASE_SELECTOR, testCases);
  /frameworks/base/test-runner/src/android/test/suitebuilder/
TestSuiteBuilder.java 50 private List<TestCase> testCases;
71 this.testCases = Lists.newArrayList();
83 this.testCases.addAll(atr.getTestCases());
90 this.testCases.add(testCase);
188 if (testCases.size() > 0) {
189 for (TestCase testCase : testCases) {
  /cts/tools/utils/
CollectAllTests.java 75 private static Map<String,TestClass> testCases;
207 testCases = new LinkedHashMap<String, TestClass>();
220 for (Iterator<TestClass> iterator = testCases.values().iterator(); iterator.hasNext();) {
398 if (testCases.containsKey(testClassName)) {
399 testClass = testCases.get(testClassName);
402 testCases.put(testClassName, testClass);
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/
InetSocketAddressTest.java 283 Object[] testCases = {
287 SerializationTest.verifySelf(testCases, COMPARATOR);
301 Object[] testCases = {
305 SerializationTest.verifyGolden(this, testCases, COMPARATOR);
  /libcore/luni/src/test/java/com/google/coretests/
CoreTestRunner.java 213 private Test createTest(List<String> testCases) throws Exception {
215 for (String testCase : testCases) {

Completed in 485 milliseconds

1 2