/external/vogar/test/vogar/ |
ScriptBuilderEscapingTest.java | 29 public static Test suite() { method in class:ScriptBuilderEscapingTest 30 TestSuite suite = new TestSuite(ScriptBuilderEscapingTest.class.getName()); local 33 suite.addTest(new SingleCharacterEscapeTest(c)); 35 suite.addTest(new MixedCharacterEscapeTest()); 36 return suite;
|
/prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/ |
fix_metaclass.py | 9 we normalize those into having a suite. 29 1) clsdef => suite => simple_stmt => expr_stmt => Leaf('__meta') 33 if node.type == syms.suite: 46 """ one-line classes don't get a suite in the parse tree so we add 50 if node.type == syms.suite: 54 # !%@#! oneliners have no suite node, we have to fake one up 59 raise ValueError("No class suite and no ':'!") 61 # move everything into a suite node 62 suite = Node(syms.suite, []) [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/ |
fix_metaclass.py | 9 we normalize those into having a suite. 29 1) clsdef => suite => simple_stmt => expr_stmt => Leaf('__meta') 33 if node.type == syms.suite: 46 """ one-line classes don't get a suite in the parse tree so we add 50 if node.type == syms.suite: 54 # !%@#! oneliners have no suite node, we have to fake one up 59 raise ValueError("No class suite and no ':'!") 61 # move everything into a suite node 62 suite = Node(syms.suite, []) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_metaclass.py | 9 we normalize those into having a suite. 29 1) clsdef => suite => simple_stmt => expr_stmt => Leaf('__meta') 33 if node.type == syms.suite: 46 """ one-line classes don't get a suite in the parse tree so we add 50 if node.type == syms.suite: 54 # !%@#! oneliners have no suite node, we have to fake one up 59 raise ValueError("No class suite and no ':'!") 61 # move everything into a suite node 62 suite = Node(syms.suite, []) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_metaclass.py | 9 we normalize those into having a suite. 29 1) clsdef => suite => simple_stmt => expr_stmt => Leaf('__meta') 33 if node.type == syms.suite: 46 """ one-line classes don't get a suite in the parse tree so we add 50 if node.type == syms.suite: 54 # !%@#! oneliners have no suite node, we have to fake one up 59 raise ValueError("No class suite and no ':'!") 61 # move everything into a suite node 62 suite = Node(syms.suite, []) [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/test/codec/ber/ |
suite.py | 15 suite = unittest.TestSuite() variable 18 suite.addTest(loader.loadTestsFromModule(m)) 20 def runTests(): unittest.TextTestRunner(verbosity=2).run(suite)
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/test/codec/cer/ |
suite.py | 15 suite = unittest.TestSuite() variable 18 suite.addTest(loader.loadTestsFromModule(m)) 20 def runTests(): unittest.TextTestRunner(verbosity=2).run(suite)
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/test/codec/der/ |
suite.py | 15 suite = unittest.TestSuite() variable 18 suite.addTest(loader.loadTestsFromModule(m)) 20 def runTests(): unittest.TextTestRunner(verbosity=2).run(suite)
|
/external/junit/src/org/junit/internal/runners/ |
SuiteMethod.java | 10 * (those that only implement a static <code>suite()</code> 15 * public static junit.framework.Test suite() { 28 Test suite= null; local 30 suiteMethod= klass.getMethod("suite"); 32 throw new Exception(klass.getName() + ".suite() must be static"); 34 suite= (Test) suiteMethod.invoke(null); // static method 38 return suite;
|
/external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/test/ |
AbstractDirectoryTestSuite.java | 56 Test suite = buildAllTestsSuite();
local 57 addTest(suite);
74 * Return true if the specified class should be included in the test suite.
77 * @return true if the specified class should be included in the test suite
99 * @return the test suite as a Test
116 return builder.suite(getDirectory());
|
/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. 55 for (String suite : suites) { 56 if (!suite.equals(TLS_FALLBACK_SCSV)) { 57 enabledCipherSuites.add(suite);
|
/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/tests/api/org/w3c/dom/ |
AllTests_Level1.java | 35 public static final Test suite() { method in class:AllTests_Level1 48 throw new RuntimeException("problem creating dom test suite, "+e.getClass().getName()+", "+e.getMessage(), e); 50 TestSuite suite = new JUnitTestSuiteAdapter(domSuite); local 51 return suite;
|
/external/autotest/site_utils/ |
suite_enumerator.py | 7 """Tool for enumerating the tests in a given suite. 9 Given an autotest root directory and a suite name (e.g., bvt, regression), this 10 tool will print out the name of each test in that suite, one per line. 19 dynamic suite infrastructure in server/cros/dynamic_suite.py. 31 from autotest_lib.server.cros.dynamic_suite.suite import Suite 34 """Parse command line for arguments including autotest directory, suite 53 """Entry point to run the suite enumerator command.""" 63 fs_getter = Suite.create_fs_getter(options.autotest_dir) 66 for suite in Suite.list_all_suites('', devserver, fs_getter) [all...] |
/frameworks/base/tests/SmokeTest/tests/src/com/android/smoketest/ |
SmokeTestRunner.java | 38 private static final String SUITE_NAME = "Smoke Test Suite"; 45 final TestSuite suite = new TestSuite(SUITE_NAME); local 57 suite.addTest(setupTest); 66 suite.addTest(postBootTest); 85 suite.addTest(appTest); 95 suite.addTest(asyncErrorTest); 97 return suite;
|
/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/ |
test_runner.py | 12 def FilterSuite(suite, predicate): 13 new_suite = suite.__class__() 15 for x in suite: 40 suite = unittest.TestSuite() 43 suite.addTest(subsuite) 44 return suite 54 def run(self, suite): 55 filtered_test = FilterSuite(suite, self.ShouldTestRun)
|
/external/testng/src/main/java/org/testng/remote/ |
RemoteSuiteWorker.java | 9 * A worker that will be put into an Executor and that sends a suite 17 public RemoteSuiteWorker(XmlSuite suite, SlavePool slavePool, RemoteResultListener listener) { 19 m_suite = suite;
|
SuiteDispatcher.java | 43 public static final String STRATEGY_SUITE = "suite";
52 * Creates a new suite dispatcher.
97 for (XmlSuite suite : suites) {
98 suite.setVerbose(m_verbose);
99 SuiteRunner suiteRunner = new SuiteRunner(configuration, suite, outputDir);
102 for (XmlTest test : suite.getTests()) {
104 tmpSuite.setXmlPackages(suite.getXmlPackages());
105 tmpSuite.setJUnit(suite.isJUnit());
106 tmpSuite.setSkipFailedInvocationCounts(suite.skipFailedInvocationCounts());
107 tmpSuite.setName("Temporary suite for " + test.getName()); [all...] |
/external/testng/src/main/java/org/testng/reporters/jq/ |
BasePanel.java | 32 protected static String suiteToTag(ISuite suite) { 33 return suite.getName().replace(" ", "_");
|
/external/testng/src/test/java/test/parameters/ |
Override1Sample.java | 11 public void g(String suite, String test, String cls) { 12 Assert.assertEquals(suite, "InheritedFromSuite");
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_lib2to3.py | 8 def suite(): function 17 run_unittest(suite())
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_lib2to3.py | 8 def suite(): function 17 run_unittest(suite())
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_lib2to3.py | 8 def suite(): function 17 run_unittest(suite())
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_lib2to3.py | 8 def suite(): function 17 run_unittest(suite())
|