/cts/tools/vm-tests-tf/src/dot/junit/opcodes/ |
D | AllTests.java | 32 public static final Test suite() { in suite() method in AllTests 33 TestSuite suite = new TestSuite("Tests for all dalvik vm opcodes"); in suite() local 34 suite.addTestSuite(dot.junit.opcodes.add_double_2addr.Test_add_double_2addr.class); in suite() 35 suite.addTestSuite(dot.junit.opcodes.add_double.Test_add_double.class); in suite() 36 suite.addTestSuite(dot.junit.opcodes.add_float_2addr.Test_add_float_2addr.class); in suite() 37 suite.addTestSuite(dot.junit.opcodes.add_float.Test_add_float.class); in suite() 38 suite.addTestSuite(dot.junit.opcodes.add_int_2addr.Test_add_int_2addr.class); in suite() 39 suite.addTestSuite(dot.junit.opcodes.add_int_lit16.Test_add_int_lit16.class); in suite() 40 suite.addTestSuite(dot.junit.opcodes.add_int_lit8.Test_add_int_lit8.class); in suite() 41 suite.addTestSuite(dot.junit.opcodes.add_int.Test_add_int.class); in suite() [all …]
|
/cts/tests/tests/proto/src/android/util/proto/cts/ |
D | ProtoTests.java | 22 public static TestSuite suite() { in suite() method in ProtoTests 23 TestSuite suite = new TestSuite(ProtoTests.class.getName()); in suite() local 25 suite.addTestSuite(EncodedBufferTest.class); in suite() 26 suite.addTestSuite(ProtoOutputStreamTagTest.class); in suite() 27 suite.addTestSuite(ProtoOutputStreamDoubleTest.class); in suite() 28 suite.addTestSuite(ProtoOutputStreamFloatTest.class); in suite() 29 suite.addTestSuite(ProtoOutputStreamInt32Test.class); in suite() 30 suite.addTestSuite(ProtoOutputStreamInt64Test.class); in suite() 31 suite.addTestSuite(ProtoOutputStreamUInt32Test.class); in suite() 32 suite.addTestSuite(ProtoOutputStreamUInt64Test.class); in suite() [all …]
|
/cts/tools/vm-tests-tf/src/dot/junit/ |
D | AllTests.java | 31 public static final Test suite() { in suite() method in AllTests 32 TestSuite suite = new TestSuite(); in suite() local 34 suite.addTest(dot.junit.opcodes.AllTests.suite()); in suite() 35 suite.addTest(dot.junit.verify.AllTests.suite()); in suite() 36 suite.addTest(dot.junit.format.AllTests.suite()); in suite() 37 return suite; in suite()
|
/cts/tests/libcore/javautilcollections/src/libcore/java/util/tests/ |
D | AndroidTestsForMapsInJavaUtil.java | 61 TestSuite suite = new TestSuite("java.util Maps: " + mapsToTest); in allTests() local 64 suite.addTest(testsForCheckedMap()); in allTests() 65 suite.addTest(testsForCheckedSortedMap()); in allTests() 66 suite.addTest(testsForEmptyMap()); in allTests() 67 suite.addTest(testsForSingletonMap()); in allTests() 68 suite.addTest(testsForHashMap()); in allTests() 69 suite.addTest(testsForLinkedHashMap()); in allTests() 70 suite.addTest(testsForEnumMap()); in allTests() 71 suite.addTest(testsForConcurrentHashMap()); in allTests() 74 suite.addTest(testsForTreeMapNatural()); in allTests() [all …]
|
/cts/tools/vm-tests-tf/src/dot/junit/verify/ |
D | AllTests.java | 32 public static final Test suite() { in suite() method in AllTests 33 TestSuite suite = new TestSuite("Tests for dalvik vm: test that " in suite() local 35 suite.addTestSuite(dot.junit.verify.a1.Test_a1.class); in suite() 36 suite.addTestSuite(dot.junit.verify.a3.Test_a3.class); in suite() 37 suite.addTestSuite(dot.junit.verify.a5.Test_a5.class); in suite() 38 suite.addTestSuite(dot.junit.verify.b2.Test_b2.class); in suite() 39 suite.addTestSuite(dot.junit.verify.b3.Test_b3.class); in suite() 40 suite.addTestSuite(dot.junit.verify.b17.Test_b17.class); in suite() 42 return suite; in suite()
|
/cts/tools/vm-tests-tf/src/dot/junit/format/ |
D | AllTests.java | 32 public static final Test suite() { in suite() method in AllTests 33 TestSuite suite = new TestSuite("Tests for dalvik vm: test that " in suite() local 35 suite.addTestSuite(dot.junit.format.f1.Test_f1.class); in suite() 37 return suite; in suite()
|
/cts/tests/libcore/javautilcollections/src/libcore/java/util/suite/ |
D | ConcurrentSkipListMapWithComparatorSuite.java | 18 package libcore.java.util.suite; 27 public static Test suite() { in suite() method in ConcurrentSkipListMapWithComparatorSuite
|
D | TreeMapWithComparatorSuite.java | 18 package libcore.java.util.suite; 27 public static Test suite() { in suite() method in TreeMapWithComparatorSuite
|
D | ConcurrentSkipListMapNaturalSuite.java | 18 package libcore.java.util.suite; 27 public static Test suite() { in suite() method in ConcurrentSkipListMapNaturalSuite
|
D | TreeMapNaturalSuite.java | 18 package libcore.java.util.suite; 27 public static Test suite() { in suite() method in TreeMapNaturalSuite
|
D | OtherCollectionsSuite.java | 18 package libcore.java.util.suite; 34 public static Test suite() { in suite() method in OtherCollectionsSuite
|
/cts/tests/jdwp/runner/device-side/src/com/android/compatibility/dalvik/ |
D | DalvikTestRunner.java | 99 config.suite = new FilterableTestSuite(classes, config.includes, config.excludes); in createConfig() 107 int count = config.suite.countTestCases(); in run() 112 collectTests(config.suite, listener, config.includes, config.excludes); in run() 116 config.suite.run(result); in run() 125 private static void collectTests(TestSuite suite, TestListener listener, in collectTests() argument 128 Enumeration<Test> tests = suite.tests(); in collectTests() 319 TestSuite suite; 352 TestSuite suite = (TestSuite) test; 353 Enumeration<Test> enumerator = suite.tests(); 377 TestSuite suite = (TestSuite) test; [all …]
|
/cts/tools/utils/ |
D | rerun.py | 31 def parseSuite(suite, parentName): argument 35 childSuites = getChildrenWithTag(suite, "TestSuite") 39 childTestCases = getChildrenWithTag(suite, "TestCase")
|
/cts/build/ |
D | deqp_dummy_test_list | 1 suite:TestSuite
|
D | compatibility_test_suite.mk | 20 …$(call intermediates-dir-for,JAVA_LIBRARIES,$(LOCAL_MODULE),true,COMMON)/test-suite-info.properties
|
/cts/tests/signature/tests/src/android/signature/cts/tests/ |
D | AllTests.java | 33 public static Test suite() { in suite() method in AllTests
|
/cts/tests/tests/opengl/ |
D | DEPRECATED | 1 This suite of tests is deprecated. Please add OpenGL CTS test to either:
|
/cts/tools/vm-tests-tf/src/dot/ |
D | Main.java | 29 TestRunner.run(AllTests.suite()); in main()
|
/cts/suite/cts/utils/ |
D | get_csv_report.py | 55 def parseSuite(suite, parentName): argument 59 childSuites = getChildrenWithTag(suite, "TestSuite") 62 childTestCases = getChildrenWithTag(suite, "TestCase")
|
/cts/tests/sensor/src/android/hardware/cts/helpers/ |
D | FrameworkUnitTests.java | 61 public static Test suite() { in suite() method in FrameworkUnitTests
|
/cts/tools/utils/cts/ |
D | tools.py | 55 for (suite_name, suite) in self.test_suites.iteritems(): 60 suite.WriteDescription(doc, child)
|
/cts/tools/vm-tests-tf/lib/ |
D | junit.jar | META-INF/
META-INF/MANIFEST.MF
junit/
junit/awtui/
junit/ ... |
/cts/tools/cts-api-coverage/proto/ |
D | cts_report.proto | 125 // cts/suite/pts/lib/commonutil/src/com/android/pts/util/ResultType.java 134 // cts/suite/pts/lib/commonutil/src/com/android/pts/util/ResultUnit.java 232 // Information about the host running the test suite. 283 // Unique name describing the test suite within the test package. 289 // Unique name describing the test case within the test suite.
|
/cts/common/device-side/nativetesthelper/jni/ |
D | gtest_wrapper.cpp | 128 Java_com_android_gtestrunner_GtestRunner_nInitialize(JNIEnv *env, jclass, jobject suite) { in Java_com_android_gtestrunner_GtestRunner_nInitialize() argument 171 addChild(env, suite, testDescription.get()); in Java_com_android_gtestrunner_GtestRunner_nInitialize()
|
/cts/tools/vm-tests-tf/src/util/build/ |
D | BuildDalvikSuite.java | 164 }.doRun(AllTests.suite()); in compose()
|