Lines Matching refs:DocTestRunner
75 'DocTestRunner',
116 # - DocTestRunner: runs DocTest cases, and accumulates statistics.
122 # |object| --DocTestFinder-> | DocTest | --DocTestRunner-> |results|
470 DocTestRunner's optionflags). By default, no options are set.
1143 class DocTestRunner:
1151 >>> runner = DocTestRunner(verbose=False)
1195 can be also customized by subclassing DocTestRunner, and
1297 with one of the `DocTestRunner.report_*` methods, using the
1457 `DocTestRunner.check_output`, and the results are formatted by
1458 the `DocTestRunner.report_*` methods.
1516 this DocTestRunner, and return a tuple `(f, t)`, where `f` is
1522 DocTestRunner's verbosity is used.
1576 #print("*** DocTestRunner.merge: '" + name + "' in both" \
1767 class DebugRunner(DocTestRunner):
1859 r = DocTestRunner.run(self, test, compileflags, out, False)
1875 # For backward compatibility, a global instance of a DocTestRunner
1968 runner = DocTestRunner(verbose=verbose, optionflags=optionflags)
2090 runner = DocTestRunner(verbose=verbose, optionflags=optionflags)
2125 runner = DocTestRunner(verbose=verbose, optionflags=optionflags)
2211 runner = DocTestRunner(optionflags=optionflags,
2784 # Verbose used to be handled by the "inspect argv" magic in DocTestRunner,