Lines Matching defs:run
76 # "Each instance of TestCase will run a single test method: the
98 test.run()
102 # "Each instance of TestCase will run a single test method: the
113 # "Each instance of TestCase will run a single test method: the
135 # "Return the default type of test result object to be used to run this
147 # "When a setUp() method is defined, the test runner will run that method
163 Foo(events).run(result)
179 Foo(events).run()
184 # "When a setUp() method is defined, the test runner will run that method
202 Foo(events).run(result)
220 Foo(events).run()
223 # "When a setUp() method is defined, the test runner will run that method
241 Foo(events).run(result)
257 Foo(events).run()
260 # "When a setUp() method is defined, the test runner will run that method
276 Foo(events).run(result)
292 Foo(events).run()
297 # "TestCase.run() still works when the defaultTestResult is a TestResult
307 Foo('test').run()
323 Foo('test1').run()
329 Foo('test2').run()
335 Foo('test3').run()
361 Foo(events).run(result)
392 Foo(events).run(result)
429 Foo(events).run(result)
455 suite.run(result)
491 # Make sure TestCase.run() respects the designated failureException
505 Foo('test').run(result)
514 # Make sure TestCase.run() respects the designated failureException
528 Foo('test').run(result)
579 # Make run() find a result object on its own
580 result = Foo('test').run()
588 # "The result object is returned to run's caller"
597 retval = Foo('test').run(result)
601 # "The same effect [as method run] may be had by simply calling the
611 def run(self, result):
1464 # Force default filter (in case tests are run with -We)
1510 # Force default filter (in case tests are run with -We)
1550 # Force default filter (in case tests are run with -We)
1594 # Force default filter (in case tests are run with -We)
1860 test = unittest.TestCase('run')
1895 klass('test_something').run()
1920 klass('test_something').run(result)
1947 klass('test_something').run(result)
1960 # Issue #19880: TestCase.run() should not keep a reference
1982 testcase.run()