/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/tests/ |
EclipseTestCollector.java | 41 * Searches through given plugin, adding all TestCase classes to given suite 42 * @param suite - TestSuite to add to 45 * that start with this package name will be added to suite 48 public void addTestCases(TestSuite suite, Plugin plugin, String expectedPackage) { 65 suite.addTestSuite((Class<? extends TestCase>)testClass); 77 * Returns true if given class should be added to suite
|
/cts/tools/cts-xml-generator/src/com/android/cts/xmlgenerator/ |
TestSuite.java | 49 public void addSuite(TestSuite suite) { 50 mSuites.put(suite.mName, suite);
|
TestListParser.java | 27 * suite:android.holo.cts 50 if ("suite".equals(key)) { 96 private TestCase handleCase(TestSuite suite, String caseName) { 98 suite.addCase(testCase);
|
/cts/tools/signature-tools/test/signature/converter/ |
AllDexTests.java | 20 import org.junit.runners.Suite; 25 @RunWith(Suite.class) 26 @Suite.SuiteClasses({
|
AllDocletTests.java | 20 import org.junit.runners.Suite; 25 @RunWith(Suite.class) 26 @Suite.SuiteClasses({
|
/external/chromium-trace/trace-viewer/src/base/ |
unittest.css | 7 counter-reset: suite-count; 70 counter-increment: suite-count; 76 content: counter(suite-count) ' -';
|
/external/junit/src/junit/framework/ |
JUnit4TestAdapterCache.java | 38 TestSuite suite = new TestSuite(description.getDisplayName()); local 40 suite.addTest(asTest(child)); 41 return suite;
|
TestSuite.java | 19 * TestSuite suite= new TestSuite(); 20 * suite.addTest(new MathTest("testAdd")); 21 * suite.addTest(new MathTest("testDivideByZero")); 29 * TestSuite suite= new TestSuite(MathTest.class); 33 * <p>This constructor creates a suite with all the methods 39 * TestSuite suite= new TestSuite(testClasses); 124 * starting with "test" as test cases to the suite. 199 * Adds a test to the suite. 206 * Adds the tests from the given class to the suite 223 * Returns the name of the suite. Not al [all...] |
/external/junit/src/org/junit/experimental/ |
ParallelComputer.java | 68 Runner suite= super.getSuite(builder, classes); local 69 return fClasses ? parallelize(suite) : suite;
|
/external/llvm/projects/ |
Makefile | 13 # Compile all subdirs, except for the test suite, which lives in test-suite. 15 DIRS:= $(filter-out llvm-test test-suite,$(patsubst $(PROJ_SRC_DIR)/%/Makefile,%,$(wildcard $(PROJ_SRC_DIR)/*/Makefile)))
|
/frameworks/base/core/tests/hosttests/test-apps/DownloadManagerTestApp/src/com/android/frameworks/downloadmanagertests/ |
DownloadManagerTestRunner.java | 43 TestSuite suite = new InstrumentationTestSuite(this); local 44 suite.addTestSuite(DownloadManagerTestApp.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
|
/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
|
/external/guava/guava-tests/test/com/google/common/collect/ |
TableCollectionTest.java | 84 @GwtIncompatible("suite") 85 public static Test suite() { method in class:TableCollectionTest 86 TestSuite suite = new TestSuite(); local 87 suite.addTestSuite(ArrayRowTests.class); 88 suite.addTestSuite(HashRowTests.class); 89 suite.addTestSuite(TreeRowTests.class); 90 suite.addTestSuite(TransposeRowTests.class); 91 suite.addTestSuite(TransformValueRowTests.class); 92 suite.addTestSuite(UnmodifiableHashRowTests.class); 93 suite.addTestSuite(UnmodifiableTreeRowTests.class) [all...] |
/external/chromium-trace/trace-viewer/third_party/gl-matrix/tasks/test/ |
node.rake | 2 desc "run test suite with node.js"
|
/external/chromium_org/build/util/lib/common/ |
unittest_util.py | 71 def GetTestsFromSuite(suite): 72 """Returns all the tests from a given test suite.""" 74 for x in suite: 82 def GetTestNamesFromSuite(suite): 83 """Returns a list of every test name in the given suite.""" 84 return map(lambda x: GetTestName(x), GetTestsFromSuite(suite)) 94 def FilterTestSuite(suite, gtest_filter): 95 """Returns a new filtered tests suite based on the given gtest filter. 100 return unittest.TestSuite(FilterTests(GetTestsFromSuite(suite), gtest_filter))
|