/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
TestsForMapsInJavaUtil.java | 39 * Generates a test suite covering the {@link Map} implementations in the 47 public static Test suite() { method in class:TestsForMapsInJavaUtil 52 TestSuite suite = new TestSuite("java.util Maps"); local 53 suite.addTest(testsForEmptyMap()); 54 suite.addTest(testsForSingletonMap()); 55 suite.addTest(testsForHashMap()); 56 suite.addTest(testsForLinkedHashMap()); 57 suite.addTest(testsForEnumMap()); 58 suite.addTest(testsForConcurrentHashMap()); 59 return suite; [all...] |
/cts/development/ide/eclipse/ |
.classpath | 22 <classpathentry kind="src" path="cts/suite/cts/deviceTests/browserbench/src"/> 23 <classpathentry kind="src" path="cts/suite/cts/deviceTests/dram/src"/> 24 <classpathentry kind="src" path="cts/suite/cts/deviceTests/filesystemperf/src"/> 25 <classpathentry kind="src" path="cts/suite/cts/deviceTests/opengl/src"/> 26 <classpathentry kind="src" path="cts/suite/cts/deviceTests/simplecpu/src"/> 27 <classpathentry kind="src" path="cts/suite/cts/deviceTests/ui/src"/> 28 <classpathentry kind="src" path="cts/suite/cts/deviceTests/videoperf/src"/> 29 <classpathentry kind="src" path="cts/suite/cts/hostTests/jank/app/src"/> 30 <classpathentry kind="src" path="cts/suite/cts/hostTests/jank/src"/> 31 <classpathentry kind="src" path="cts/suite/cts/hostTests/uihost/appA/src"/ [all...] |
/external/vogar/src/vogar/target/junit/ |
Junit3.java | 56 * suite. 61 Method suiteMethod = testClass.getMethod("suite"); 91 * suite. 105 // public static Test suite() {...} 108 || new ClassAnalyzer(klass).hasMethod(true, Test.class, "suite"); 144 * Handle classes that define suite() 147 Method suiteMethod = testClass.getMethod("suite"); 152 out.add(new ConfigurationError(testClass.getName() + "#suite", e)); 161 out.add(new ConfigurationError(testClass.getName() + "#suite", 162 new IllegalStateException("Unknown suite() result: " + test))) [all...] |
/frameworks/base/test-runner/src/android/test/suitebuilder/ |
TestSuiteBuilder.java | 57 * @param clazz Use the class from your .apk. Use the class name for the test suite name. 156 * Override the default name for the suite being built. This should generally be called if you 161 * @param newSuiteName Prefix of name to give the suite being built. 172 * @return The suite containing the requested tests. 177 // Keep track of current class so we know when to create a new sub-suite. 194 TestSuite suite = new TestSuite(getSuiteName()); local 195 suite.addTest(new FailedToCreateTests(exception)); 196 return suite; 202 * Subclasses use this method to determine the name of the suite. 204 * @return The package and suite name combined [all...] |
/cts/suite/cts/deviceTests/browserbench/assets/octane/ |
base.js | 49 // full benchmark suite has run to completion. 121 var suite = suites[index++]; 122 if (runner.NotifyStart) runner.NotifyStart(suite.name); 123 continuation = suite.RunStep(runner); 173 // the benchmark suite. This can be useful to report progress. 180 // Notifies the runner that we're done with running a suite and that 236 // This function starts running a suite, but stops between each 237 // individual benchmark in the suite and returns a continuation 245 var suite = this; 255 suite.benchmarks[index].Setup() [all...] |
/external/v8/benchmarks/ |
base.js | 48 // full benchmark suite has run to completion. 116 var suite = suites[index++]; 117 if (runner.NotifyStart) runner.NotifyStart(suite.name); 118 continuation = suite.RunStep(runner); 168 // the benchmark suite. This can be useful to report progress. 175 // Notifies the runner that we're done with running a suite and that 231 // This function starts running a suite, but stops between each 232 // individual benchmark in the suite and returns a continuation 240 var suite = this; 250 suite.benchmarks[index].Setup() [all...] |
/external/guava/guava-tests/test/com/google/common/collect/ |
ConstrainedBiMapTest.java | 50 @GwtIncompatible("suite") 51 public static Test suite() { method in class:ConstrainedBiMapTest 52 TestSuite suite = new TestSuite(); local 53 suite.addTest(BiMapTestSuiteBuilder 65 suite.addTestSuite(ConstrainedBiMapTest.class); 66 return suite;
|
ConstrainedMapTest.java | 50 @GwtIncompatible("suite") 51 public static Test suite() { method in class:ConstrainedMapTest 52 TestSuite suite = new TestSuite(); local 53 suite.addTest(MapTestSuiteBuilder 64 suite.addTestSuite(ConstrainedMapTest.class); 65 return suite;
|
HashMultimapTest.java | 41 @GwtIncompatible("suite") 42 public static Test suite() { method in class:HashMultimapTest 43 TestSuite suite = new TestSuite(); local 44 suite.addTest(SetMultimapTestSuiteBuilder.using(new TestStringSetMultimapGenerator() { 65 suite.addTestSuite(HashMultimapTest.class); 66 return suite;
|
HashMultisetTest.java | 46 @GwtIncompatible("suite") 47 public static Test suite() { method in class:HashMultisetTest 48 TestSuite suite = new TestSuite(); local 49 suite.addTest(MultisetTestSuiteBuilder.using(hashMultisetGenerator()) 58 suite.addTestSuite(HashMultisetTest.class); 59 return suite;
|
LinkedHashMultisetTest.java | 45 @GwtIncompatible("suite") 46 public static Test suite() { method in class:LinkedHashMultisetTest 47 TestSuite suite = new TestSuite(); local 48 suite.addTest(MultisetTestSuiteBuilder.using(linkedHashMultisetGenerator()) 58 suite.addTestSuite(LinkedHashMultisetTest.class); 59 return suite;
|
SimpleAbstractMultisetTest.java | 47 @GwtIncompatible("suite") 48 public static Test suite() { method in class:SimpleAbstractMultisetTest 49 TestSuite suite = new TestSuite(); local 50 suite.addTestSuite(SimpleAbstractMultisetTest.class); 51 suite.addTest(MultisetTestSuiteBuilder.using(new TestStringMultisetGenerator() { 63 return suite;
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/test/ |
test_email_torture.py | 4 # standard Python test suite since it requires several meg of email messages 125 def suite(): 126 suite = unittest.TestSuite() 128 suite.addTest(unittest.makeSuite(testclass)) 129 return suite 140 unittest.main(defaultTest='suite') 122 def suite(): function
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_except.py | 40 try_stmt< 'try' ':' (simple_stmt | suite) 41 cleanup=(except_clause ':' (simple_stmt | suite))+ 42 tail=(['except' ':' (simple_stmt | suite)] 43 ['else' ':' (simple_stmt | suite)] 44 ['finally' ':' (simple_stmt | suite)]) > 69 #TODO(cwinter) suite-cleanup
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/test/ |
test_email_torture.py | 4 # standard Python test suite since it requires several meg of email messages 125 def suite(): 126 suite = unittest.TestSuite() 128 suite.addTest(unittest.makeSuite(testclass)) 129 return suite 140 unittest.main(defaultTest='suite') 122 def suite(): function
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_except.py | 40 try_stmt< 'try' ':' (simple_stmt | suite) 41 cleanup=(except_clause ':' (simple_stmt | suite))+ 42 tail=(['except' ':' (simple_stmt | suite)] 43 ['else' ':' (simple_stmt | suite)] 44 ['finally' ':' (simple_stmt | suite)]) > 69 #TODO(cwinter) suite-cleanup
|
/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);
|
/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/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/lldb/test/ |
dosep.ty | 4 Run the test suite using a separate process for each test file. 40 Run lldb test suite using a separate process for each test file. 58 print "FAIL: LLDB (suite) :: %s (%s)" % (f, system_info)
|
/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)))
|