/external/vogar/test/vogar/target/junit4/ |
SuiteTest.java | 20 import org.junit.runners.Suite; 21 import org.junit.runners.Suite.SuiteClasses; 23 @RunWith(Suite.class)
|
/external/v8/tools/ |
run_perf.py | 11 The suite json format is expected to be: 14 "name": <optional suite name, file name is default>, 15 "archs": [<architecture name for which this suite is run>, ...], 18 "run_count": <how often will this suite run (optional)>, 19 "run_count_XXX": <how often will this suite run for arch XXX (optional)>, 35 The tests field can also nest other suites in arbitrary depth. A suite 36 with a "main" file is a leaf suite that can contain one more level of 39 A suite's results_regexp is expected to have one string place holder 40 "%s" for the trace name. A trace's results_regexp overwrites suite 43 A suite's results_processor may point to an optional python script. I [all...] |
/cts/tools/tradefed-host/src/com/android/cts/tradefed/result/ |
TestSuite.java | 55 * @return the name of this suite 62 * Set the name of this suite 69 * Insert the given test result into this suite. 71 * @param suiteNames list of remaining suite names for this test 84 TestSuite suite = getTestSuite(rootName); local 85 return suite.findTest(suiteNames, testClassName, testName, insertIfMissing); 155 * Populates this class with suite result data parsed from XML. 170 TestSuite suite = new TestSuite(); local 171 suite.parse(parser); 172 insertSuite(suite); 196 mChildSuiteMap.put(suite.getName(), suite); local [all...] |
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/tvcm/ |
test_runner.py | 15 def FilterSuite(suite, predicate): 16 new_suite = suite.__class__() 18 for x in suite: 45 suite = unittest.TestSuite() 48 suite.addTest(subsuite) 49 return suite 67 def run(self, suite): 68 filtered_test = FilterSuite(suite, self.ShouldTestRun)
|
/external/expat/tests/ |
README.txt | 1 This directory contains the (fledgling) test suite for Expat. The 13 This test suite can all change in a later version.
|
/external/junit/src/org/junit/runners/ |
AllTests.java | 6 * (those that only implement a static <code>suite()</code> 11 * public static junit.framework.Test suite() {
|
/external/llvm/utils/lit/examples/many-tests/ |
README.txt | 5 This directory contains a trivial lit test suite configuration that defines a 9 This test suite is useful for testing the performance of lit on large numbers of
|
/external/llvm/utils/lit/tests/Inputs/discovery/ |
lit.cfg | 2 config.name = 'top-level-suite' 7 # because this suite gets reused for testing the exec root behavior (in
|
/external/skia/platform_tools/android/tests/ |
run_all.py | 16 suite = unittest.TestLoader().discover(os.path.dirname(__file__), 18 results = unittest.TextTestRunner(verbosity=2).run(suite)
|
/external/skia/tools/ |
test_all.py | 17 suite = unittest.TestLoader().discover(os.path.dirname(__file__), 19 results = unittest.TextTestRunner(verbosity=2).run(suite)
|
/external/vogar/src/junit/framework/ |
TestSuite.java | 41 public TestSuite(Class<?> suite) { 42 this(suite, null); 45 public TestSuite(Class<?> suite, String name) { 46 if (suite == null) { 47 throw new IllegalArgumentException("suite == null"); 49 testsAndSuites.add(suite); 64 public void addTestSuite(Class<?> suite) { 65 testsAndSuites.add(suite);
|
/external/guava/guava-tests/test/com/google/common/collect/ |
MapsCollectionTest.java | 63 public static Test suite() { method in class:MapsCollectionTest 64 TestSuite suite = new TestSuite(); local 66 suite.addTest(BiMapTestSuiteBuilder 87 suite.addTest(MapTestSuiteBuilder 142 suite.addTest(SortedMapTestSuiteBuilder 203 suite.addTest(filterSuite()); 204 suite.addTest(transformSuite()); 205 return suite; 209 TestSuite suite = new TestSuite("Filter"); local 210 suite.addTest(filterMapSuite()) 217 TestSuite suite = new TestSuite("FilterMap"); local 291 TestSuite suite = new TestSuite("FilterBiMap"); local 346 TestSuite suite = new TestSuite("FilterSortedMap"); local 502 TestSuite suite = new TestSuite("Maps.transform"); local 509 TestSuite suite = new TestSuite("TransformMap"); local 552 TestSuite suite = new TestSuite("TransformSortedMap"); local [all...] |
/cts/tools/vm-tests-tf/src/dot/junit/format/ |
AllTests.java | 32 public static final Test suite() { method in class:AllTests 33 TestSuite suite = new TestSuite("Tests for dalvik vm: test that " local 35 suite.addTestSuite(dot.junit.format.f1.Test_f1.class); 37 return suite;
|
/external/clang/test/Parser/ |
cxx-typeof.cpp | 9 // Part of rdar://problem/8347416; from the gcc test suite.
|
/external/junit/src/org/junit/runners/model/ |
Statement.java | 9 * of running a JUnit test suite.
|
/external/lldb/test/unittest2/test/ |
test_new_tests.py | 28 suite = unittest2.TestSuite((Test('testOne'),)) 29 result = runner.run(suite) 39 suite = unittest.TestSuite((Test('testOne'),)) 40 result = runner.run(suite)
|
/external/llvm/utils/lit/examples/ |
README.txt | 5 This directory contains examples of 'lit' test suite configurations. The test
|
/external/llvm/utils/lit/tests/Inputs/exec-discovery/ |
lit.site.cfg | 1 # Load the discovery suite, but with a separate exec root.
|
/external/llvm/utils/lit/tests/Inputs/exec-discovery-in-tree/ |
lit.cfg | 7 config.name = 'exec-discovery-in-tree-suite'
|
/external/slf4j/slf4j-ext/src/test/java/org/slf4j/cal10n_dummy/ |
PackageTest.java | 31 public static Test suite() { method in class:PackageTest 32 TestSuite suite = new TestSuite(); local 33 suite.addTestSuite(LocLoggerTest.class); 34 return suite;
|
/external/strace/qemu_multiarch_testing/hdc.dir/ |
init2 | 11 cat tests/test-suite.log ||:
|
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/ |
ConnectivityManagerUnitTestRunner.java | 36 TestSuite suite = new InstrumentationTestSuite(this); local 37 suite.addTestSuite(WifiClientTest.class); 38 suite.addTestSuite(WifiSoftAPTest.class); 39 return suite;
|
/libcore/dom/src/test/java/ |
README | 1 all classes under org.w3c.domts are from the official w3c test suite.
|
/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
TestDefaultParser.java | 26 * Test suite using the default JAXP parser in the default configuration 33 * Create a new instance of the test suite 34 * @return new test suite 37 public static TestSuite suite() throws Exception method in class:TestDefaultParser
|
TestDefaultParserAltConfig.java | 28 * Test suite using the default JAXP parser in the alternative configuration 35 * Create a new instance of the test suite 36 * @return new test suite 40 public static TestSuite suite() throws Exception method in class:TestDefaultParserAltConfig
|