HomeSort by relevance Sort by last modified time
    Searched refs:suite (Results 51 - 75 of 613) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/lldb/test/unittest2/test/
test_suite.py 43 suite = unittest2.TestSuite()
45 self.assertEqual(suite.countTestCases(), 0)
50 # or other test suites that will be used to build the suite initially"
53 # creation of an empty suite
55 suite = unittest2.TestSuite([])
57 self.assertEqual(suite.countTestCases(), 0)
62 # or other test suites that will be used to build the suite initially"
82 # or other test suites that will be used to build the suite initially"
92 suite = unittest2.TestSuite(tests())
93 self.assertEqual(suite.countTestCases(), 2
    [all...]
  /external/chromium_org/third_party/skia/gm/rebaseline_server/
test_all.py 20 suite = unittest.TestLoader().discover(os.path.dirname(__file__),
22 results = unittest.TextTestRunner(verbosity=2).run(suite)
  /external/chromium_org/third_party/skia/platform_tools/android/tests/
run_all.py 16 suite = unittest.TestLoader().discover(os.path.dirname(__file__),
18 results = unittest.TextTestRunner(verbosity=2).run(suite)
  /external/skia/gm/rebaseline_server/
test_all.py 20 suite = unittest.TestLoader().discover(os.path.dirname(__file__),
22 results = unittest.TextTestRunner(verbosity=2).run(suite)
  /external/skia/platform_tools/android/tests/
run_all.py 16 suite = unittest.TestLoader().discover(os.path.dirname(__file__),
18 results = unittest.TextTestRunner(verbosity=2).run(suite)
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/
make-hosted 42 foreach my $suite (@suites) {
48 mkdir "hosted/${suite}";
50 open TESTLIST, "<./tests/${suite}/LIST";
68 open SCRIPT, "<tests/${suite}/${test}.js";
83 $output =~ s/\@SUITE\@/${suite}/g;
85 open OUTPUT, ">hosted/${suite}/driver.html";
90 $output =~ s/\@SUITE\@/${suite}/g;
92 open OUTPUT, ">hosted/${suite}/results.html"
    [all...]
  /external/chromium_org/v8/tools/testrunner/objects/
testcase.py 32 def __init__(self, suite, path, flags=[], dependency=None):
33 self.suite = suite # TestSuite object
43 copy = TestCase(self.suite, self.path, self.flags + flags, self.dependency)
66 self.suite = suites[self.suite]
70 self.suite.StripOutputForTransmit(self)
80 return self.suite.name
83 return self.suitename() + "/" + self.suite.CommonTestName(self)
  /external/chromium_org/tools/cygprofile/
run_tests 17 suite = unittest.TestSuite() variable
19 suite.addTests(loader.discover(start_dir=os.path.dirname(__file__),
21 res = unittest.TextTestRunner(verbosity=2).run(suite)
  /external/chromium_org/tools/memory_inspector/
run_tests 17 suite = unittest.TestSuite() variable
19 suite.addTests(loader.discover(start_dir=memory_inspector.ROOT_DIR,
21 res = unittest.TextTestRunner(verbosity=2).run(suite)
  /frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/
RsPerfTestRunner.java 40 TestSuite suite = new InstrumentationTestSuite(this); local
41 suite.addTestSuite(RsBenchTest.class);
42 return suite;
  /frameworks/rs/java/tests/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
  /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
  /external/expat/tests/
minicheck.c 15 Suite *
18 Suite *suite = (Suite *) calloc(1, sizeof(Suite)); local
19 if (suite != NULL) {
20 suite->name = name;
22 return suite;
36 suite_add_tcase(Suite *suite, TCase *tc)
113 Suite *suite; local
    [all...]
  /external/jarjar/src/test/com/tonicsystems/jarjar/
RulesFileParserTest.java 33 public static Test suite() { method in class:RulesFileParserTest
  /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/Camera/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/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/Camera2/tests_camera/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;

Completed in 2052 milliseconds

1 23 4 5 6 7 8 91011>>