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

<<11121314151617181920>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/
test_join.py 95 suite = unittest.TestSuite()
97 suite.addTest(unittest.makeSuite(JoinTestCase))
99 return suite
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_parser.py 33 suite = parser.suite("from __future__ import unicode_literals; x = ''")
34 code = suite.compile()
40 self.roundtrip(parser.suite, s)
264 st1 = parser.suite(code)
555 st = parser.suite('x = 2; y = x + 3')
562 st = parser.suite('1 = 3 + 4')
566 st = parser.suite('a = u"\U12345678"')
568 st = parser.suite('a = u"\u1"')
638 check_st_sizeof(parser.suite('x = 2 + 3')
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/
test_fileid.py 55 suite = unittest.TestSuite()
57 suite.addTest(unittest.makeSuite(FileidResetTestCase))
58 return suite
test_join.py 95 suite = unittest.TestSuite()
97 suite.addTest(unittest.makeSuite(JoinTestCase))
99 return suite
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_parser.py 33 suite = parser.suite("from __future__ import unicode_literals; x = ''")
34 code = suite.compile()
40 self.roundtrip(parser.suite, s)
264 st1 = parser.suite(code)
555 st = parser.suite('x = 2; y = x + 3')
562 st = parser.suite('1 = 3 + 4')
566 st = parser.suite('a = u"\U12345678"')
568 st = parser.suite('a = u"\u1"')
638 check_st_sizeof(parser.suite('x = 2 + 3')
    [all...]
  /external/autotest/site_utils/docgen/
CreateDocs.py 6 """ Parse suite control files and make HTML documentation from included tests.
8 This program will create a list of test cases found in suite files by parsing
9 through each suite control file and making a list of all of the jobs called from
12 constraints in the suite control file, will be added to the original test
25 - Absolute path of suite control files.
29 - Each master suite has a README.txt file with general instructions on
39 suite=True, it will assume the node is from a suite control file.
68 """Process suite control files to combine docstrings and create HTML docs.
70 The DocCreator class is designed to parse AutoTest suite control files t
    [all...]
  /external/testng/src/main/java/org/testng/internal/
Invoker.java 128 * same test class with different parameters in the same suite run.
137 XmlSuite suite,
142 invokeConfigurations(testClass, null, allMethods, suite, params, parameterValues, instance,
149 XmlSuite suite,
195 handleConfigurationSkip(tm, testResult, configurationAnnotation, currentTestMethod, instance, suite);
206 suite,
239 handleConfigurationFailure(ex, tm, testResult, configurationAnnotation, currentTestMethod, instance, suite);
241 handleConfigurationFailure(ex, tm, testResult, configurationAnnotation, currentTestMethod, instance, suite);
254 XmlSuite suite) {
255 recordConfigurationInvocationFailed(tm, testResult.getTestClass(), annotation, currentTestMethod, instance, suite);
    [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/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
DHGenParameterSpecTest.java 57 public static Test suite() { method in class:DHGenParameterSpecTest
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/
CertificatePoliciesTest.java 64 public static Test suite() { method in class:CertificatePoliciesTest
  /external/autotest/server/cros/dynamic_suite/
tools.py 233 of a suite. If for some reason it cannot retrieve the bug_id it will
245 @param keyvals Keyvals associated with a suite job.
247 @param testname Name of a test from the suite.
263 def create_job_name(build, suite, test_name):
264 """Create the name of a test job based on given build, suite, and test_name.
267 @param suite: name of the suite, e.g., bvt.
272 return '/'.join([build, suite, test_name])
275 def get_test_name(build, suite, test_job_name):
278 Name of test job may contain information like build and suite. This metho
    [all...]
  /external/autotest/site_utils/suite_scheduler/
base_event_unittest.py 22 def __init__(self, suite, build, pool, pymox):
23 super(FakeTask, self).__init__('Fake', suite, build, pool)
43 def __init__(self, suite, build, pool, pymox):
44 super(FakeOneShot, self).__init__(suite, build, pool, pymox)
  /external/guava/guava-testlib/test/com/google/common/collect/testing/
MinimalCollectionTest.java 33 public static Test suite() { method in class:MinimalCollectionTest
  /external/guava/guava-tests/test/com/google/common/collect/
MultimapsCollectionTest.java 74 @GwtIncompatible("suite") // TODO(cpovirk): set up collect/gwt/suites version
236 public static Test suite() { method in class:MultimapsCollectionTest
237 TestSuite suite = new TestSuite(); local
239 suite.addTest(transformSuite());
240 suite.addTest(filterSuite());
242 suite.addTest(ListMultimapTestSuiteBuilder.using(new TestStringListMultimapGenerator() {
264 suite.addTest(SetTestSuiteBuilder.using(
277 suite.addTest(SetTestSuiteBuilder.using(
292 suite.addTest(MultisetTestSuiteBuilder.using(
311 return suite;
398 TestSuite suite = new TestSuite("Multimaps.transform*"); local
557 TestSuite suite = new TestSuite("Multimaps.filter*"); local
    [all...]
  /external/guava/guava-tests/test/com/google/common/primitives/
ByteArrayAsListTest.java 38 * Test suite covering {@link Bytes#asList(byte[])}.
53 @GwtIncompatible("suite")
54 public static Test suite() { method in class:ByteArrayAsListTest
70 TestSuite suite = new TestSuite(); local
72 suite.addTest(
80 return suite;
83 // Test generators. To let the GWT test suite generator access them, they need to be
CharArrayAsListTest.java 38 * Test suite covering {@link Chars#asList(char[])}.
53 @GwtIncompatible("suite")
54 public static Test suite() { method in class:CharArrayAsListTest
70 TestSuite suite = new TestSuite(); local
72 suite.addTest(
80 return suite;
83 // Test generators. To let the GWT test suite generator access them, they need to be
DoubleArrayAsListTest.java 38 * Test suite covering {@link Doubles#asList(double[])}.
53 @GwtIncompatible("suite")
54 public static Test suite() { method in class:DoubleArrayAsListTest
70 TestSuite suite = new TestSuite(); local
72 suite.addTest(
80 return suite;
83 // Test generators. To let the GWT test suite generator access them, they need to be
FloatArrayAsListTest.java 38 * Test suite covering {@link Floats#asList(float[])})}.
53 @GwtIncompatible("suite")
54 public static Test suite() { method in class:FloatArrayAsListTest
70 TestSuite suite = new TestSuite(); local
72 suite.addTest(
80 return suite;
83 // Test generators. To let the GWT test suite generator access them, they need to be
IntArrayAsListTest.java 38 * Test suite covering {@link Ints#asList(int[])}.
54 @GwtIncompatible("suite")
55 public static Test suite() { method in class:IntArrayAsListTest
71 TestSuite suite = new TestSuite(); local
73 suite.addTest(
81 return suite;
84 // Test generators. To let the GWT test suite generator access them, they need to be
LongArrayAsListTest.java 38 * Test suite covering {@link Longs#asList(long[])}.
53 @GwtIncompatible("suite")
54 public static Test suite() { method in class:LongArrayAsListTest
70 TestSuite suite = new TestSuite(); local
72 suite.addTest(
80 return suite;
83 // Test generators. To let the GWT test suite generator access them, they need to be
ShortArrayAsListTest.java 38 * Test suite covering {@link Shorts#asList(short[])}.
53 @GwtIncompatible("suite")
54 public static Test suite() { method in class:ShortArrayAsListTest
70 TestSuite suite = new TestSuite(); local
72 suite.addTest(
80 return suite;
83 // Test generators. To let the GWT test suite generator access them, they need to be
  /external/llvm/test/Bindings/OCaml/
irreader.ml 21 let suite name f = var
59 suite "irreader" test_irreader
passmgr_builder.ml 22 let suite name f = var
63 suite "pass manager builder" test_pmbuilder;
vectorize.ml 23 let suite name f = var
55 suite "transforms" test_transforms;
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
TestBatik.java 28 public static TestSuite suite() throws Exception method in class:TestBatik

Completed in 1402 milliseconds

<<11121314151617181920>>