/external/chromium-trace/catapult/third_party/gsutil/gslib/tests/ |
test_notification.py | 24 import gslib.tests.testcase as testcase 35 class TestNotification(testcase.GsUtilIntegrationTestCase):
|
test_web.py | 20 import gslib.tests.testcase as testcase 21 from gslib.tests.testcase.integration_testcase import SkipForS3 31 class TestWeb(testcase.GsUtilIntegrationTestCase):
|
test_compose.py | 21 import gslib.tests.testcase as testcase 22 from gslib.tests.testcase.integration_testcase import SkipForS3 27 class TestCompose(testcase.GsUtilIntegrationTestCase): 131 class TestCompatibleCompose(testcase.GsUtilIntegrationTestCase):
|
test_file_part.py | 22 import gslib.tests.testcase as testcase 26 class TestFilePart(testcase.GsUtilUnitTestCase):
|
test_hash.py | 20 import gslib.tests.testcase as testcase 23 class TestHash(testcase.GsUtilUnitTestCase):
|
test_versioning.py | 19 import gslib.tests.testcase as testcase 24 class TestVersioning(testcase.GsUtilIntegrationTestCase):
|
test_Doption.py | 23 import gslib.tests.testcase as testcase 24 from gslib.tests.testcase.integration_testcase import SkipForS3 31 class TestDOption(testcase.GsUtilIntegrationTestCase):
|
/external/libexif/test/nls/ |
test-nls.c | 15 typedef struct _testcase testcase; typedef in typeref:struct:_testcase 18 static testcase testcases[] = {
|
/external/v8/test/webkit/ |
testcfg.py | 33 from testrunner.objects import testcase 61 test = testcase.TestCase(self, testname) 65 def GetFlagsForTestCase(self, testcase, context): 66 source = self.GetSourceForTest(testcase) 83 testfilename = os.path.join(self.root, testcase.path + self.suffix()) 96 return testcase.flags + flags 98 def GetSourceForTest(self, testcase): 99 filename = os.path.join(self.root, testcase.path + self.suffix())
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/calendar/ |
AstroTest.java | 357 double testcase[][] = {{2012, 5, 20 , 16 , 48, 59}, local 371 for(int i=0; i<testcase.length; i++){ 373 String testString = "CASE["+i+"]: Year "+(int)testcase[i][0]+" Month "+(int)testcase[i][1]+" Day "+ 374 (int)testcase[i][2]+" Hour "+(int)testcase[i][3]+" Minutes "+(int)testcase[i][4]+ 375 " Seconds "+(int)testcase[i][5]; 376 gc.set((int)testcase[i][0],(int)testcase[i][1]-1,(int)testcase[i][2],(int)testcase[i][3],(int)testcase[i][4], (int)testcase[i][5]) [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/ |
AstroTest.java | 353 double testcase[][] = {{2012, 5, 20 , 16 , 48, 59}, local 367 for(int i=0; i<testcase.length; i++){ 369 String testString = "CASE["+i+"]: Year "+(int)testcase[i][0]+" Month "+(int)testcase[i][1]+" Day "+ 370 (int)testcase[i][2]+" Hour "+(int)testcase[i][3]+" Minutes "+(int)testcase[i][4]+ 371 " Seconds "+(int)testcase[i][5]; 372 gc.set((int)testcase[i][0],(int)testcase[i][1]-1,(int)testcase[i][2],(int)testcase[i][3],(int)testcase[i][4], (int)testcase[i][5]) [all...] |
/external/icu/icu4c/source/test/iotest/ |
stream.cpp | 307 char testcase[10]; local 308 testString(UStr, u_austrcpy(testcase, testCase1), expectedResultA, IOSTREAM_EOF|IOSTREAM_FAIL); 309 testString(UStr, u_austrcpy(testcase, testCase2), expectedResultB, IOSTREAM_EOF); 311 testString(UStr, u_austrcpy(testcase, testCase3), expectedResultC, IOSTREAM_EOF|IOSTREAM_FAIL); 312 testString(UStr, u_austrcpy(testcase, testCase4), expectedResultD, IOSTREAM_EOF); 313 testString(UStr, u_austrcpy(testcase, testCase5), expectedResultD, IOSTREAM_GOOD); 314 testString(UStr, u_austrcpy(testcase, testCase6), expectedResultD, IOSTREAM_GOOD);
|
/external/curl/tests/unit/ |
unit1307.c | 33 struct testcase { struct 39 static const struct testcase tests[] = { 222 int testnum = sizeof(tests) / sizeof(struct testcase);
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/ |
GoNegReqTestSuite.java | 17 package com.android.cts.verifier.p2p.testcase;
|
LocalServices.java | 16 package com.android.cts.verifier.p2p.testcase;
|
P2pClientTestSuite.java | 17 package com.android.cts.verifier.p2p.testcase;
|
ServReqAllTestCase01.java | 17 package com.android.cts.verifier.p2p.testcase;
|
ServReqAllTestCase02.java | 17 package com.android.cts.verifier.p2p.testcase;
|
ServReqAllTestCase03.java | 17 package com.android.cts.verifier.p2p.testcase;
|
ServReqDnsPtrTestCase.java | 16 package com.android.cts.verifier.p2p.testcase;
|
ServReqDnsTxtTestCase.java | 16 package com.android.cts.verifier.p2p.testcase;
|
ServReqUpnpAllTestCase.java | 16 package com.android.cts.verifier.p2p.testcase;
|
ServReqUpnpRootDeviceTestCase.java | 16 package com.android.cts.verifier.p2p.testcase;
|
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/ |
BerInputStreamTest.java | 29 import junit.framework.TestCase; 41 public class BerInputStreamTest extends TestCase { 52 Object[][] testcase = { local 80 for (int i = 0; i < testcase.length; i++) { 83 new ByteArrayInputStream((byte[]) testcase[i][0])); 85 int expected = ((BigInteger) testcase[i][1]).intValue(); 90 fail("Testcase: " + i + "\nUnexpected exception." + e); 94 // negative testcase
|
IntegerTest.java | 29 import junit.framework.TestCase; 43 public class IntegerTest extends TestCase { 142 int[] testcase = new int[] { 0, 1, -1, 127, -127, 128, -128, 32767, local 145 for (int i = 0; i < testcase.length; i++) { 146 assertEquals("Testcase: " + i, testcase[i], ASN1Integer 147 .toIntValue(ASN1Integer.fromIntValue(testcase[i])));
|