HomeSort by relevance Sort by last modified time
    Searched refs:suite (Results 301 - 325 of 1003) sorted by null

<<11121314151617181920>>

  /external/v8/test/promises-aplus/lib/
mocha.js 61 var suite = current();
62 if (!suite) {
67 suite.Run();
90 TestCase.prototype.RunFunction = function(suite, fn, postAction) {
105 suite.ReportError(this, e);
114 TestCase.prototype.Run = function(suite, postAction) {
115 print('Running ' + suite.description + '#' + this.name + ' ...');
119 suite.ReportError(this, Error('timeout'));
122 this.RunFunction(suite, this.before, function(e) {
127 return suite.ReportError(this, e)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/
fix_tuple_params.py 38 ['->' any] ':' suite=any+ >
51 suite = results["suite"]
54 # TODO(cwinter): suite-cleanup
55 if suite[0].children[1].type == token.INDENT:
57 indent = suite[0].children[1].value
93 line.parent = suite[0]
95 # TODO(cwinter) suite-cleanup
99 elif is_docstring(suite[0].children[start]):
104 line.parent = suite[0
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/
fix_tuple_params.py 38 ['->' any] ':' suite=any+ >
51 suite = results["suite"]
54 # TODO(cwinter): suite-cleanup
55 if suite[0].children[1].type == token.INDENT:
57 indent = suite[0].children[1].value
93 line.parent = suite[0]
95 # TODO(cwinter) suite-cleanup
99 elif is_docstring(suite[0].children[start]):
104 line.parent = suite[0
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_tuple_params.py 38 ['->' any] ':' suite=any+ >
51 suite = results["suite"]
54 # TODO(cwinter): suite-cleanup
55 if suite[0].children[1].type == token.INDENT:
57 indent = suite[0].children[1].value
93 line.parent = suite[0]
95 # TODO(cwinter) suite-cleanup
99 elif is_docstring(suite[0].children[start]):
104 line.parent = suite[0
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_tuple_params.py 38 ['->' any] ':' suite=any+ >
51 suite = results["suite"]
54 # TODO(cwinter): suite-cleanup
55 if suite[0].children[1].type == token.INDENT:
57 indent = suite[0].children[1].value
93 line.parent = suite[0]
95 # TODO(cwinter) suite-cleanup
99 elif is_docstring(suite[0].children[start]):
104 line.parent = suite[0
    [all...]
  /cts/common/util/src/com/android/compatibility/common/util/
TestSuiteFilter.java 40 * suite of tests, but it has no tests in it, causing a crash.
64 // If the test is a suite it could contain multiple tests, these need to be split
66 TestSuite suite = (TestSuite) test; local
67 Enumeration<Test> enumerator = suite.tests();
89 // If the test is a suite it could contain multiple tests, these need to be split
91 TestSuite suite = (TestSuite) test; local
92 Enumeration<Test> enumerator = suite.tests();
  /development/testrunner/test_defs/
gtest.py 31 """A test suite for running gtest on device."""
46 """Run the provided gtest test suite.
90 logger.SilentLog('Creating gtest suite for file %s' % test_file)
91 suite = GTestSuite()
92 suite.SetBuildPath(self.GetBuildPath())
94 suite.SetTargetExecPath(os.path.join(target_root_path, test_file, test_file))
95 test_suites.append(suite)
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
SSLStreamedInputTest.java 50 public static Test suite() { method in class:SSLStreamedInputTest
  /external/guava/guava-testlib/test/com/google/common/collect/testing/
MinimalSetTest.java 33 public static Test suite() { method in class:MinimalSetTest
OpenJdk6QueueTests.java 36 public static Test suite() { method in class:OpenJdk6QueueTests
  /external/icu/icu4c/source/test/intltest/
itmajor.cpp 41 #define CASE_SUITE(id, suite) case id: \
42 name = #suite; \
44 logln(#suite "---"); \
45 suite test; \
  /external/jacoco/org.jacoco.ant.test/src/org/jacoco/ant/
InstrumentTaskTest.java 27 public static TestSuite suite() throws IOException { method in class:InstrumentTaskTest
ReportTaskTest.java 25 public static TestSuite suite() { method in class:ReportTaskTest
  /external/jarjar/src/test/com/tonicsystems/jarjar/
GenericsTest.java 41 public static Test suite() { method in class:GenericsTest
WildcardTest.java 45 public static Test suite() { method in class:WildcardTest
  /external/testng/src/main/java/org/testng/
Converter.java 65 for (XmlSuite suite : allSuites) {
66 String fileName = suite.getFileName();
74 writeFile(newFile, Yaml.toYaml(suite).toString());
78 writeFile(newFile, suite.toXml());
  /external/testng/src/main/java/org/testng/remote/strprotocol/
SuiteMessage.java 14 * A <code>IStringMessage</code> implementation for suite running events.
32 public SuiteMessage(final ISuite suite, final boolean startSuiteRun) {
33 m_suiteName = suite.getName();
34 m_testMethodCount =suite.getInvokedMethods().size();
36 Collection<ITestNGMethod> excludedMethods = suite.getExcludedMethods();
97 return "[SuiteMessage suite:" + m_suiteName
  /external/testng/src/main/java/org/testng/reporters/jq/
ChronologicalPanel.java 25 public String getHeader(ISuite suite) {
30 public String getContent(ISuite suite, XMLStringBuffer main) {
32 List<IInvokedMethod> invokedMethods = suite.getAllInvokedMethods();
50 cls = "configuration-suite before";
52 cls = "configuration-suite after";
97 public String getNavigatorLink(ISuite suite) {
  /external/testng/src/test/java/test/methodselectors/
MethodSelectorInSuiteTest.java 33 XmlSuite suite = new XmlSuite(); local
39 suite.setMethodSelectors(methodSelectors);
40 XmlTest test = new XmlTest(suite);
43 tng.setXmlSuites(Arrays.asList(suite));
  /external/testng/src/test/java/test/sample/
JUnitSample4.java 24 public static TestSuite suite() { method in class:JUnitSample4
25 TestSuite ts = new TestSuite("Sample Suite");
  /packages/apps/Camera2/tests/src/com/android/camera/
StressTests.java 38 public static Test suite() { method in class:StressTests
  /packages/apps/Camera2/tests_camera/src/com/android/camera/
StressTests.java 39 public static Test suite() { method in class:StressTests
  /packages/apps/LegacyCamera/tests/src/com/android/camera/
StressTests.java 38 public static Test suite() { method in class:StressTests
  /prebuilts/gdb/darwin-x86/lib/python2.7/unittest/
__init__.py 61 from .suite import BaseTestSuite, TestSuite
  /prebuilts/gdb/linux-x86/lib/python2.7/unittest/
__init__.py 61 from .suite import BaseTestSuite, TestSuite

Completed in 854 milliseconds

<<11121314151617181920>>