HomeSort by relevance Sort by last modified time
    Searched full:test_suite (Results 1 - 25 of 252) sorted by null

1 2 3 4 5 6 7 8 91011

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_versionpredicate.py 9 def test_suite(): function
13 run_unittest(test_suite())
test_bdist_msi.py 22 def test_suite(): function
26 run_unittest(test_suite())
test_util.py 21 def test_suite(): function
25 run_unittest(test_suite())
__init__.py 5 'test' and contains a function test_suite(). The function is expected
24 def test_suite(): function
31 suite.addTest(module.test_suite())
36 run_unittest(test_suite())
test_bdist_wininst.py 28 def test_suite(): function
32 run_unittest(test_suite())
test_bdist.py 48 def test_suite(): function
52 run_unittest(test_suite())
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_versionpredicate.py 9 def test_suite(): function
13 run_unittest(test_suite())
test_bdist_msi.py 22 def test_suite(): function
26 run_unittest(test_suite())
test_util.py 21 def test_suite(): function
25 run_unittest(test_suite())
__init__.py 5 'test' and contains a function test_suite(). The function is expected
24 def test_suite(): function
31 suite.addTest(module.test_suite())
36 run_unittest(test_suite())
test_bdist_wininst.py 28 def test_suite(): function
32 run_unittest(test_suite())
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_distutils.py 4 the test_suite() function there returns a test suite that's ready to
13 test_support.run_unittest(distutils.tests.test_suite())
test_json.py 4 the test_suite() function there returns a test suite that's ready to
13 test.test_support.run_unittest(json.tests.test_suite())
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_distutils.py 4 the test_suite() function there returns a test suite that's ready to
13 test_support.run_unittest(distutils.tests.test_suite())
test_json.py 4 the test_suite() function there returns a test suite that's ready to
13 test.test_support.run_unittest(json.tests.test_suite())
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_distutils.py 4 the test_suite() function there returns a test suite that's ready to
13 test_support.run_unittest(distutils.tests.test_suite())
test_json.py 4 the test_suite() function there returns a test suite that's ready to
13 test.test_support.run_unittest(json.tests.test_suite())
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_distutils.py 4 the test_suite() function there returns a test suite that's ready to
13 test_support.run_unittest(distutils.tests.test_suite())
test_json.py 4 the test_suite() function there returns a test suite that's ready to
13 test.test_support.run_unittest(json.tests.test_suite())
  /external/webrtc/webrtc/test/
run_all_unittests.cc 11 #include "webrtc/test/test_suite.h"
14 webrtc::test::TestSuite test_suite(argc, argv);
15 return test_suite.Run();
  /external/chromium-trace/catapult/third_party/WebOb/docs/
doctests.py 4 def test_suite(): function
17 unittest.main(defaultTest='test_suite')
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/impl/
unit_test_suite.ipp 97 framework::get<test_suite>( p_parent_id ).increase_exp_fail( num );
120 // ************** test_suite ************** //
125 test_suite::test_suite( const_string name )
134 test_suite::add( test_unit* tu, counter_t expected_failures, unsigned timeout )
152 test_suite::add( test_unit_generator const& gen, unsigned timeout )
162 test_suite::remove( test_unit_id id )
173 test_suite::get( const_string tu_name ) const
199 traverse_test_tree( test_suite const& suite, test_tree_visitor& V )
234 traverse_test_tree( framework::get<test_suite>( id ), V )
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/
unit_test_suite_impl.hpp 12 // Description : defines test_unit, test_case, test_case_results, test_suite and test_tree_visitor
65 typedef BOOST_READONLY_PROPERTY(test_unit_id,(test_suite)) parent_id_t;
123 // ************** test_suite ************** //
126 class BOOST_TEST_DECL test_suite : public test_unit { class in namespace:boost::unit_test
131 explicit test_suite( const_string ts_name );
144 void traverse_test_tree( test_suite const&, test_tree_visitor& );
146 virtual ~test_suite() {}
156 class BOOST_TEST_DECL master_test_suite_t : public test_suite {
158 master_test_suite_t() : test_suite( "Master Test Suite" )
177 virtual bool test_suite_start( test_suite const& ) { return true;
    [all...]
  /development/testrunner/test_defs/
xml_suite_helper.py 65 test_suite = parser.Parse(element)
66 return test_suite
68 def _ParseCommonAttributes(self, suite_element, test_suite):
69 test_suite.SetName(self._ParseAttribute(suite_element, self._NAME_ATTR,
71 test_suite.SetBuildPath(self._ParseAttribute(suite_element,
73 test_suite.SetContinuous(self._ParseAttribute(suite_element,
76 test_suite.SetIsGrantedPermissions(self._ParseAttribute(suite_element,
79 test_suite.SetSuite(self._ParseAttribute(suite_element, self._SUITE_ATTR, False,
81 test_suite.SetDescription(self._ParseAttribute(suite_element,
85 test_suite.SetExtraBuildArgs(self._ParseAttribute
    [all...]
  /external/chromium-trace/catapult/dashboard/dashboard/models/
alert_group.py 51 def GroupAlerts(alerts, test_suite, kind):
59 test_suite: The test suite name for |alerts|.
70 if not _FindAlertGroup(alert_entity, groups, test_suite, kind):
71 _CreateGroupForAlert(alert_entity, test_suite, kind)
83 def _FindAlertGroup(alert_entity, groups, test_suite, kind):
94 test_suite: The test suite of |alert_entity|.
103 and test_suite in group.test_suites):
109 def _CreateGroupForAlert(alert_entity, test_suite, kind):
114 group.test_suites = [test_suite]

Completed in 2780 milliseconds

1 2 3 4 5 6 7 8 91011