HomeSort by relevance Sort by last modified time
    Searched refs:suite (Results 126 - 150 of 1333) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/testng/src/test/java/test/objectfactory/
ObjectFactory2Test.java 18 XmlSuite suite = TestHelper.createSuite(ClassObjectFactorySampleTest.class.getName(), local
20 TestNG tng = TestHelper.createTestNG(suite);
22 if (onSuite) suite.setObjectFactory(new ClassObjectFactory());
32 testFactory(true /* on suite object */);
  /frameworks/rs/tests/java_api/ImageProcessing/src/com/android/rs/image/
ImageProcessingTestRunner.java 35 TestSuite suite = new InstrumentationTestSuite(this); local
36 suite.addTestSuite(ImageProcessingTest.class);
37 return suite;
  /libcore/dom/src/test/java/tests/api/org/w3c/dom/
AllTests_Level2.java 35 public static final Test suite() { method in class:AllTests_Level2
48 throw new RuntimeException("problem creating dom test suite", e);
50 TestSuite suite = new JUnitTestSuiteAdapter(domSuite); local
51 return suite;
  /packages/apps/Music/tests/src/com/android/music/
MusicPlayerStressTestRunner.java 40 TestSuite suite = new InstrumentationTestSuite(this); local
41 //suite.addTestSuite(MusicPlaybackStress.class);
42 suite.addTestSuite(AlbumsPlaybackStress.class);
43 return suite;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
__init__.py 1 """Test suite for distutils.
3 This test suite consists of a collection of test modules in the
25 suite = unittest.TestSuite()
31 suite.addTest(module.test_suite())
32 return suite
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
__init__.py 1 """Test suite for distutils.
3 This test suite consists of a collection of test modules in the
25 suite = unittest.TestSuite()
31 suite.addTest(module.test_suite())
32 return suite
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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/python/cpython2/Lib/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/gdb/darwin-x86/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/gdb/linux-x86/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/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...]
  /cts/tests/signature/tests/src/android/signature/cts/tests/
AllTests.java 33 public static Test suite() { method in class:AllTests
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_unittest.py 7 test_support.run_unittest(unittest.test.suite())
  /external/annotation-tools/asmx/test/conform/org/objectweb/asm/signature/
SignatureTest.class 
  /external/guava/guava-gwt/test/com/google/common/
GwtTestSuite.java 30 * Runs all _gwt tests. Grouping them into a suite is much faster than running each as a one-test
31 * "suite," as the per-suite setup is expensive.
34 public static Test suite() throws IOException { method in class:GwtTestSuite
35 GWTTestSuite suite = new GWTTestSuite(); local
43 suite.addTestSuite(cast);
46 return suite;
  /external/jarjar/src/test/com/tonicsystems/jarjar/
RulesFileParserTest.java 33 public static Test suite() { method in class:RulesFileParserTest
  /external/jsr330/tck/org/atinject/tck/
Tck.java 26 * Manufactures the compatibility test suite. This TCK relies on
28 * injector, create a JUnit test suite class that passes an injected
37 * public static Test suite() {
45 * <p>The static {@code suite} method that returns a {@code Test} is a JUnit
92 * Constructs a JUnit test suite for the given {@link Car} instance.
116 TestSuite suite = new TestSuite(Convertible.Tests.class); local
118 suite.addTestSuite(Convertible.StaticTests.class);
121 suite.addTestSuite(Convertible.PrivateTests.class);
123 return suite;
  /external/python/cpython2/Lib/test/
test_unittest.py 7 test_support.run_unittest(unittest.test.suite())
  /external/testng/src/main/java/org/testng/internal/
PathUtilsMock.java 25 public String getSuiteNormalizedPath(XmlSuite suite, String suiteFile) {
  /external/testng/src/main/java/org/testng/reporters/jq/
BaseMultiSuitePanel.java 8 abstract String getHeader(ISuite suite);
9 abstract String getContent(ISuite suite, XMLStringBuffer xsb);
37 public String getPanelName(ISuite suite) {
38 return getPrefix() + suiteToTag(suite);
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
MediaFrameworkIntegrationTestRunner.java 45 TestSuite suite = new InstrumentationTestSuite(this); local
46 suite.addTestSuite(CameraBinderTest.class);
47 suite.addTestSuite(CameraDeviceBinderTest.class);
48 return suite;
  /packages/apps/Camera2/tests/src/com/android/camera/stress/
CameraStressTestRunner.java 33 TestSuite suite = new InstrumentationTestSuite(this); local
34 suite.addTestSuite(ImageCapture.class);
35 suite.addTestSuite(VideoCapture.class);
36 return suite;
  /packages/apps/LegacyCamera/tests/src/com/android/camera/
CameraStressTestRunner.java 35 TestSuite suite = new InstrumentationTestSuite(this); local
36 suite.addTestSuite(ImageCapture.class);
37 suite.addTestSuite(VideoCapture.class);
38 return suite;
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_unittest.py 7 test_support.run_unittest(unittest.test.suite())

Completed in 790 milliseconds

1 2 3 4 56 7 8 91011>>