HomeSort by relevance Sort by last modified time
    Searched full:suite (Results 26 - 50 of 5899) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_email_renamed.py 5 from email.test.test_email_renamed import suite namespace
9 test_support.run_unittest(suite())
test_unittest.py 7 test_support.run_unittest(unittest.test.suite())
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/tests/
AllTests.java 31 * Returns a suite of test cases to be run.
33 public static TestSuite suite() { method in class:AllTests
34 TestSuite suite = new TestSuite(); local
35 suite.addTest(FuncTests.suite());
36 suite.addTest(UnitTests.suite());
37 return suite;
  /frameworks/base/graphics/tests/graphicstests/src/android/graphics/
GraphicsTests.java 22 public static TestSuite suite() { method in class:GraphicsTests
23 TestSuite suite = new TestSuite(GraphicsTests.class.getName()); local
25 suite.addTestSuite(BitmapTest.class);
26 suite.addTestSuite(TypefaceTest.class);
27 return suite;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/test/
test_suite.py 49 suite = unittest.TestSuite()
51 self.assertEqual(suite.countTestCases(), 0)
56 # or other test suites that will be used to build the suite initially"
59 # creation of an empty suite
61 suite = unittest.TestSuite([])
63 self.assertEqual(suite.countTestCases(), 0)
68 # or other test suites that will be used to build the suite initially"
88 # or other test suites that will be used to build the suite initially"
98 suite = unittest.TestSuite(tests())
99 self.assertEqual(suite.countTestCases(), 2
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/test/
test_suite.py 49 suite = unittest.TestSuite()
51 self.assertEqual(suite.countTestCases(), 0)
56 # or other test suites that will be used to build the suite initially"
59 # creation of an empty suite
61 suite = unittest.TestSuite([])
63 self.assertEqual(suite.countTestCases(), 0)
68 # or other test suites that will be used to build the suite initially"
88 # or other test suites that will be used to build the suite initially"
98 suite = unittest.TestSuite(tests())
99 self.assertEqual(suite.countTestCases(), 2
    [all...]
  /external/expat/tests/
minicheck.h 41 typedef struct Suite Suite;
45 Suite *suite; member in struct:SRunner
50 struct Suite {
76 Suite *suite_create(char *name);
78 void suite_add_tcase(Suite *suite, TCase *tc);
83 SRunner *srunner_create(Suite *suite);
    [all...]
runtestspp.cpp 1 // C++ compilation harness for the test suite.
  /packages/apps/Camera/tests/src/com/android/camera/
CameraTestRunner.java 35 TestSuite suite = new InstrumentationTestSuite(this); local
36 suite.addTestSuite(CameraActivityTest.class);
37 suite.addTestSuite(CameraTest.class);
38 suite.addTestSuite(ImageCaptureIntentTest.class);
39 suite.addTestSuite(VideoCaptureIntentTest.class);
40 suite.addTestSuite(CameraUnitTest.class);
41 return suite;
  /cts/tools/vm-tests-tf/src/dot/junit/verify/
AllTests.java 32 public static final Test suite() { method in class:AllTests
33 TestSuite suite = new TestSuite("Tests for dalvik vm: test that " local
35 suite.addTestSuite(dot.junit.verify.a1.Test_a1.class);
36 suite.addTestSuite(dot.junit.verify.a3.Test_a3.class);
37 suite.addTestSuite(dot.junit.verify.a5.Test_a5.class);
38 suite.addTestSuite(dot.junit.verify.b2.Test_b2.class);
39 suite.addTestSuite(dot.junit.verify.b3.Test_b3.class);
40 suite.addTestSuite(dot.junit.verify.b17.Test_b17.class);
42 return suite;
  /external/chromium_org/tools/idl_parser/
run_tests.py 11 suite = unittest.TestSuite() variable
15 suite.addTests(unittest.defaultTestLoader.loadTestsFromModule(module))
16 result = unittest.TextTestRunner(verbosity=2).run(suite)
  /development/testrunner/test_defs/
xml_suite_helper.py 18 """Utility to parse suite info from xml."""
39 _SUITE_ATTR = 'suite'
45 """Populates common suite attributes from given suite xml element.
52 parsed test suite or None
101 """Parses instrumentation suite attributes from xml."""
112 """Creates suite and populate with data from xml element."""
113 suite = instrumentation_test.InstrumentationTestSuite()
114 XmlSuiteParser._ParseCommonAttributes(self, suite_element, suite)
115 suite.SetPackageName(self._ParseAttribute(suite_element, self._PKG_ATTR
    [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/apache-harmony/
README.android 1 The Apache Harmony test suite.
  /external/junit/src/junit/runner/
TestSuiteLoader.java 4 * An interface to define how a test suite should be loaded.
  /external/llvm/utils/lit/
TODO 13 - Allow import of 'lit' in test suite definitions.
15 - Create an explicit test suite object (instead of using the top-level
21 - Consider move to identifying all tests by path-to-test-suite and then path to
22 subtest, and don't use test suite names.
  /external/llvm/utils/lit/tests/Inputs/discovery/subsuite/
lit.cfg 1 config.name = 'sub-suite'
  /frameworks/base/core/tests/coretests/src/android/content/
ContentTests.java 22 public static TestSuite suite() { method in class:ContentTests
23 TestSuite suite = new TestSuite(ContentTests.class.getName()); local
25 suite.addTestSuite(AssetTest.class);
26 return suite;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_unittest.py 7 test_support.run_unittest(unittest.test.suite())
  /frameworks/base/test-runner/tests/src/android/test/
TestCaseUtilTest.java 71 public static Test suite() { method in class:TestCaseUtilTest.OneTestTestCaseWithSuite
85 public static Test suite() { method in class:TestCaseUtilTest.OneTestTestSuite
86 TestSuite suite = new TestSuite(OneTestTestSuite.class.getName()); local
87 suite.addTestSuite(OneTestTestCase.class);
88 return suite;
93 public static Test suite() { method in class:TestCaseUtilTest.TwoTestsInTestSuite
94 TestSuite suite = new TestSuite(TwoTestsInTestSuite.class.getName()); local
95 suite.addTestSuite(OneTestTestCase.class);
96 suite.addTest(OneTestTestSuite.suite());
    [all...]
  /external/antlr/antlr-3.4/gunit/src/test/java/org/antlr/gunit/
GunitTest.java 24 * @return the suite of tests being tested
26 public static Test suite() method in class:GunitTest
  /external/chromium_org/chrome/test/perf/
perftests.cc 10 base::PerfTestSuite suite(argc, argv);
14 return suite.Run();
  /external/llvm/utils/lit/tests/Inputs/discovery/
lit.cfg 1 config.name = 'top-level-suite'
6 # because this suite gets reused for testing the exec root behavior (in
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/
Required_Suite.py 0 """Suite Required Suite: Every application supports open, print, run, and quit

Completed in 582 milliseconds

12 3 4 5 6 7 8 91011>>