/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/ |
WorkSpaceController.java | 89 jfc.setDialogTitle("Create test suite from grammar"); 125 jfc.setDialogTitle("Open existing gUnit test suite"); 239 /** Create test suite action. */ 243 putValue(SHORT_DESCRIPTION, "Create a test suite from an ANTLR grammar"); 251 /** Save test suite action. */ 255 putValue(SHORT_DESCRIPTION, "Save the test suite"); 263 /** Open test suite action. */ 267 putValue(SHORT_DESCRIPTION, "Open an existing test suite"); 276 /** Run test suite action. */ 280 putValue(SHORT_DESCRIPTION, "Run the current test suite"); [all...] |
RunnerController.java | 101 public void OnShowSuiteResult(TestSuite suite) { 103 view.tree.setModel(new RunnerTreeModel(suite)); 133 public TestSuiteTreeNode(TestSuite suite) { 134 super(suite.getGrammarName()); 135 for(int i=0; i<suite.getRuleCount(); ++i) { 136 final Rule rule = suite.getRule(i); 139 data = suite;
|
/external/wpa_supplicant_8/src/tls/ |
tlsv1_common.c | 91 * tls_get_cipher_suite - Get TLS cipher suite 92 * @suite: Cipher suite identifier 95 const struct tls_cipher_suite * tls_get_cipher_suite(u16 suite) 99 if (tls_cipher_suites[i].suite == suite) 117 const struct tls_cipher_suite *suite; local 120 suite = tls_get_cipher_suite(cipher); 121 if (suite == NULL) 124 switch (suite->key_exchange) [all...] |
/libcore/luni/src/test/java/libcore/xml/ |
JaxenXPathTestSuite.java | 44 * href="http://jaxen.codehaus.org/">Jaxen</a> XPath test suite, adapted for use 51 * suite's root directory as an argument. 58 public static Test suite() throws Exception { method in class:JaxenXPathTestSuite 60 return suite(new File(jaxenHome)); 64 * Creates a test suite from the Jaxen tests.xml catalog. 66 public static Test suite(File jaxenHome) method in class:JaxenXPathTestSuite 101 * Populates the test suite with tests from the given XML context element. 103 private static void contextToTestSuite(TestSuite suite, String url, 127 suite.addTest(createFromTest(xpath, context, test)); 130 suite.addTest(createFromValueOf(xpath, context, test)) [all...] |
/development/testrunner/test_defs/ |
instrumentation_test.py | 32 """Represents a java instrumentation test suite definition run on device.""" 69 """Configure the suite to only run tests in given java package.""" 92 """Run the provided test suite. 267 suite = InstrumentationTestSuite() 268 suite.SetPackageName(pkg_name) 269 suite.SetBuildPath(self.GetBuildPath()) 270 suite.SetRunnerName(instr_name) 271 suite.SetName(pkg_name) 272 suite.SetClassName(class_name_arg) 273 suite.SetJavaPackageFilter(java_package_name [all...] |
/cts/tools/utils/ |
DescriptionGenerator.java | 253 * information of all the test package, test suite and test cases. 290 * Rebuild the document, merging empty suite nodes. 293 // merge empty suite nodes 304 * Merge the test suite which only has one sub-suite. In this case, unify 307 * @param suiteElem The suite element of which to be merged. 351 * Append a named test suite to a specified element. Including match with 352 * the existing suite nodes and do the real creation and append. 355 * @param testSuite The test suite to be appended. 386 * Get the test suite child nodes of a specified element [all...] |
/cts/tools/cts-xml-generator/src/com/android/cts/xmlgenerator/ |
XmlGenerator.java | 37 * suite: x.y.z 43 * suite: x.y 148 for (TestSuite suite : sorted) { 149 writer.append("<TestSuite name=\"").append(suite.getName()).println("\">"); 151 String namePart = suite.getName(); 157 writeTestSuites(writer, suite.getSuites(), nameCollector); 158 writeTestCases(writer, suite.getCases(), nameCollector);
|
/external/chromium_org/chrome/browser/resources/net_internals/ |
test_view.js | 69 addTextNode(p, 'Started connection test suite suite on '); 83 * Callback for when an individual test in the suite has begun. 128 * Callback for when an individual test in the suite has finished. 154 * Callback for when the last test in the suite has finished. 158 addTextNode(p, 'Completed connection test suite suite');
|
/external/chromium_org/v8/benchmarks/ |
run.html | 8 <title>V8 Benchmark Suite</title> 94 <div class="title"><h1>V8 Benchmark Suite - version <span id="version">?</span></h1></div> 97 suite. Consider running the 104 This page contains a suite of pure JavaScript benchmarks that we have 108 100). Scores are not comparable across benchmark suite versions and 126 run with the same revision of the benchmark suite. We will be making 128 of the benchmark suite. For previous revisions and the change log see
|
/external/guava/guava-tests/test/com/google/common/collect/ |
ForwardingSortedMapTest.java | 114 public static Test suite() { 115 TestSuite suite = new TestSuite(); 117 suite.addTestSuite(ForwardingSortedMapTest.class); 118 suite.addTest(MapTestSuiteBuilder.using(new TestStringMapGenerator() { 136 suite.addTest(MapTestSuiteBuilder.using(new TestStringMapGenerator() { 159 suite.addTest(MapTestSuiteBuilder.using(new TestStringMapGenerator() { 181 return suite;
|
/external/junit/src/junit/framework/ |
TestCase.java | 63 * different <i>test runners</i> which can run a test suite and collect the results. 64 * A test runner either expects a static method <code>suite</code> as the entry 65 * point to get a test to run or it will extract the suite automatically. 67 * public static Test suite() { 68 * suite.addTest(new MathTest("testAdd")); 69 * suite.addTest(new MathTest("testDivideByZero")); 70 * return suite;
|
/external/v8/benchmarks/ |
run.html | 8 <title>V8 Benchmark Suite</title> 94 <div class="title"><h1>V8 Benchmark Suite - version <span id="version">?</span></h1></div> 97 suite. Consider running the 104 This page contains a suite of pure JavaScript benchmarks that we have 108 100). Scores are not comparable across benchmark suite versions and 126 run with the same revision of the benchmark suite. We will be making 128 of the benchmark suite. For previous revisions and the change log see
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/ |
test_db.py | 152 suite = unittest.TestSuite() 154 suite.addTest(unittest.makeSuite(DB_general)) 155 suite.addTest(unittest.makeSuite(DB_txn)) 156 suite.addTest(unittest.makeSuite(DB_hash)) 157 suite.addTest(unittest.makeSuite(DB_recno)) 158 suite.addTest(unittest.makeSuite(DB_queue)) 160 return suite
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/ |
test_db.py | 152 suite = unittest.TestSuite() 154 suite.addTest(unittest.makeSuite(DB_general)) 155 suite.addTest(unittest.makeSuite(DB_txn)) 156 suite.addTest(unittest.makeSuite(DB_hash)) 157 suite.addTest(unittest.makeSuite(DB_recno)) 158 suite.addTest(unittest.makeSuite(DB_queue)) 160 return suite
|
/docs/source.android.com/src/compatibility/ |
overview.jd | 76 <li>The Compatilbility Test Suite, representing the "mechanism" of compatibility</li> 86 <p>No test suite, including CTS, can truly be comprehensive. For instance, the 103 <h1 id="compatibility-test-suite-cts">Compatibility Test Suite (CTS)</h1> 104 <p>The CTS is a free, commercial-grade test suite, available for 113 <h1 id="compatibility-test-suite-verifier-cts-verifier">Compatibility Test Suite Verifier (CTS Verifier)</h1> 114 <p>The Compatibility Test Suite Verifier (CTS Verifier) is a supplement to the 115 Compatibility Test Suite (CTS), available for <a href="downloads.html">download</a>.
|
/external/junit/src/junit/runner/ |
BaseTestRunner.java | 28 public static final String SUITE_METHODNAME= "suite"; 91 * Returns the Test corresponding to the given suite. This is 116 // try to extract a test suite automatically 121 runFailed("Suite() method must be static"); 131 runFailed("Failed to invoke suite():" + e.getTargetException().toString()); 135 runFailed("Failed to invoke suite():" + e.toString()); 152 * returns the name of the suite class to run or null 200 * a test suite. 216 * Returns the loaded Class for a suite name.
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_largefile.py | 108 # this is already decided before start running the test suite 177 suite = unittest.TestSuite() 185 suite.addTest(TestCase('test_seek')) 186 suite.addTest(TestCase('test_osstat')) 187 suite.addTest(TestCase('test_seek_read')) 188 suite.addTest(TestCase('test_lseek')) 191 suite.addTest(TestCase('test_truncate')) 192 suite.addTest(TestCase('test_seekable')) 195 run_unittest(suite)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_largefile.py | 108 # this is already decided before start running the test suite 177 suite = unittest.TestSuite() 185 suite.addTest(TestCase('test_seek')) 186 suite.addTest(TestCase('test_osstat')) 187 suite.addTest(TestCase('test_seek_read')) 188 suite.addTest(TestCase('test_lseek')) 191 suite.addTest(TestCase('test_truncate')) 192 suite.addTest(TestCase('test_seekable')) 195 run_unittest(suite)
|
/development/samples/ApiDemos/tests/src/com/example/android/apis/ |
AllTests.java | 25 * A test suite containing all tests for ApiDemos. 31 * To run just this suite from the command line: 48 public static Test suite() { method in class:AllTests
|
/external/chromium_org/base/test/ |
test_suite.h | 8 // Defines a basic test suite framework for running gtest based tests. You can 48 // This constructor is only accessible to specialized test suite 72 // Basic initialization for the test suite happens here.
|
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/tests/ |
__init__.py | 51 suite = unittest.makeSuite(test) 52 pref = '%s (%d): ' % (test.__name__, len(suite._tests)) 55 suite(result)
|
/external/chromium_org/tools/perf/benchmarks/ |
browsermark.py | 7 Browsermark benchmark suite have five test groups: 18 tests are not included in this suite. 49 """Browsermark suite tests CSS, DOM, resize, page load, WebGL and JS."""
|
/external/junit/src/org/junit/ |
ClassRule.java | 15 * {@link org.junit.runners.Suite}), and finally any {@link AfterClass} methods. 30 * For example, here is a test suite that connects to a server once before 35 * @RunWith(Suite.class)
|
/external/llvm/docs/ |
ReleaseProcess.rst | 58 that's the one you should use for the test-suite and other external tests. 95 .. _test-suite: 97 Test Suite 103 Follow the `LNT Quick Start Guide <http://llvm.org/docs/lnt/quickstart.html>`__ link on how to set-up the test-suite 106 Link that directory to an easier location and run the test-suite. 115 --test-suite ~/devel/llvm/test/test-suite \ 120 all the bugs in the test-suite, since they're not necessarily meant to pass on all architectures all the time. This is 148 * Using the ``Phase3/Release+Asserts/llvmCore-MAJ.MIN-final.install`` base, run the test-suite. 172 * Repeat the steps above with ``-rc 1``, ``-rc 2`` etc modes and run the test-suite [all...] |
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/ |
WifiAssociationTestRunner.java | 47 TestSuite suite = new InstrumentationTestSuite(this); local 48 suite.addTestSuite(WifiAssociationTest.class); 49 return suite;
|