/frameworks/base/core/tests/hosttests/test-apps/DownloadManagerTestApp/src/com/android/frameworks/downloadmanagertests/ |
DownloadManagerTestRunner.java | 42 TestSuite suite = new InstrumentationTestSuite(this); local 43 suite.addTestSuite(DownloadManagerTestApp.class); 44 return suite;
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/ |
MediaFrameworkPerfTestRunner.java | 43 TestSuite suite = new InstrumentationTestSuite(this); local 44 suite.addTestSuite(MediaPlayerPerformance.class); 45 return suite;
|
/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
TestOracle.java | 26 * Test suite that runs all DOM L2 Core tests using the 36 * @return test suite 39 public static TestSuite suite() throws Exception { method in class:TestOracle
|
TestOracleAltConfig.java | 26 * Test suite that runs all DOM L2 Core tests using the 35 * @return test suite 38 public static TestSuite suite() throws Exception { method in class:TestOracleAltConfig
|
/libcore/dom/src/test/java/org/w3c/domts/level2/events/ |
TestOracle.java | 26 * Test suite that runs all DOM L2 Events tests using the 36 * @return test suite 39 public static TestSuite suite() throws Exception { method in class:TestOracle
|
TestOracleAltConfig.java | 26 * Test suite that runs all DOM L2 Events tests using the 35 * @return test suite 38 public static TestSuite suite() throws Exception { method in class:TestOracleAltConfig
|
/libcore/dom/src/test/java/org/w3c/domts/level3/core/ |
TestOracle.java | 26 * Test suite that runs all DOM L3 Core tests using the 36 * @return test suite 39 public static TestSuite suite() throws Exception { method in class:TestOracle
|
TestOracleAltConfig.java | 26 * Test suite that runs all DOM L3 Core tests using the 35 * @return test suite 38 public static TestSuite suite() throws Exception { method in class:TestOracleAltConfig
|
/libcore/dom/src/test/java/org/w3c/domts/level3/validation/ |
TestOracle.java | 26 * Test suite that runs all DOM L3 Validation tests using the 36 * @return test suite 39 public static TestSuite suite() throws Exception { method in class:TestOracle
|
TestOracleAltConfig.java | 26 * Test suite that runs all DOM L3 Validation tests using the 35 * @return test suite 38 public static TestSuite suite() throws Exception { method in class:TestOracleAltConfig
|
/libcore/jsr166-tests/src/test/java/jsr166/ |
SystemTest.java | 16 // retrying tests that have suite() declarations. 19 // main(suite(), args); 21 // public static Test suite() {
|
ThreadTest.java | 16 // retrying tests that have suite() declarations. 19 // main(suite(), args); 21 // public static Test suite() {
|
/ndk/sources/host-tools/make-3.81/tests/ |
README | 1 The test suite was originally written by Steve McGee and Chris Arthur. 6 This entire test suite, including all test files, are copyright and 27 The test suite requires Perl. These days, you should have at least Perl 32 The test suite assumes that the first "diff" it finds on your PATH is 35 To run the test suite on a UNIX system, use "perl ./run_make_tests" 38 To run the test suite on Windows NT or DOS systems, use 48 Tests cannot end with a "~" character, as the test suite will ignore any 52 filesystems. You can use mkshadow to create a copy of the test suite in 72 other possible options for the test suite. 78 The test suite has a number of problems which should be addressed. On [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/ |
test_fileid.py | 55 suite = unittest.TestSuite() 57 suite.addTest(unittest.makeSuite(FileidResetTestCase)) 58 return suite
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/ |
test_fileid.py | 55 suite = unittest.TestSuite() 57 suite.addTest(unittest.makeSuite(FileidResetTestCase)) 58 return suite
|
/cts/tools/cts-xml-generator/src/com/android/cts/xmlgenerator/ |
TestListParser.java | 27 * suite:android.holo.cts 50 if ("suite".equals(key)) { 96 private TestCase handleCase(TestSuite suite, String caseName) { 98 suite.addCase(testCase);
|
/external/chromium-trace/trace-viewer/tracing/third_party/gl-matrix/tasks/test/ |
node.rake | 2 desc "run test suite with node.js"
|
/external/guava/guava-testlib/test/com/google/common/collect/testing/ |
SafeTreeMapTest.java | 37 public static Test suite() { method in class:SafeTreeMapTest 38 TestSuite suite = new TestSuite(); local 39 suite.addTestSuite(SafeTreeMapTest.class); 40 return suite;
|
/external/junit/src/junit/runner/ |
StandardTestSuiteLoader.java | 7 * The standard test suite loader. It can only load the same class once.
|
/external/llvm/utils/lit/ |
TODO | 11 recursive search to find the test suite for each item, but then we only do a 29 delegated to each test suite. This could take a couple forms: 31 * We could resolve to test suites, then fully load each test suite, then have 32 a fixed process to map input specifiers to tests in the test suite 33 (presumably based on path-in-suite derivations). This has the benefit of 35 loading the entire test suite. 38 suite. This would allow formats that anticipate large test suites to manage 44 2. Consider move to identifying all tests by path-to-test-suite and then path to 45 subtest, and don't use test suite names. 47 Currently the test suite name is presented as part of test names, but it ha [all...] |
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/ |
FallbackTestClientSocketFactory.java | 34 * The cipher suite used during TLS connection fallback to indicate a fallback. 84 for (String suite : suites) { 85 if (!suite.equals(TLS_FALLBACK_SCSV)) { 86 enabledCipherSuites.add(suite);
|
/external/selinux/libsemanage/tests/ |
libsemanage-tests.c | 34 suite = CU_add_suite(#name, name##_test_init, name##_test_cleanup); \ 35 if (NULL == suite) { \ 38 if (name##_add_tests(suite)) { \ 52 CU_pSuite suite = NULL; local
|
test_utilities.c | 81 int semanage_utilities_add_tests(CU_pSuite suite) 83 if (NULL == CU_add_test(suite, "semanage_is_prefix", 87 if (NULL == CU_add_test(suite, "semanage_split_on_space", 91 if (NULL == CU_add_test(suite, "semanage_split", test_semanage_split)) { 94 if (NULL == CU_add_test(suite, "semanage_list", test_semanage_list)) { 97 if (NULL == CU_add_test(suite, "semanage_str_count", 101 if (NULL == CU_add_test(suite, "semanage_rtrim", test_semanage_rtrim)) { 104 if (NULL == CU_add_test(suite, "semanage_findval", 108 if (NULL == CU_add_test(suite, "slurp_file_filter",
|
/external/selinux/libsepol/tests/ |
libsepol-tests.c | 38 suite = CU_add_suite(#name, name##_test_init, name##_test_cleanup); \ 39 if (NULL == suite) { \ 42 if (name##_add_tests(suite)) { \ 56 CU_pSuite suite = NULL; local
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/nestegg/ |
INSTALL | 8 4. Run |make check| to run the test suite.
|