Lines Matching defs:runner
7 --runner=CLASS Create a main() function that runs CxxTest::CLASS
8 --gui=CLASS Like --runner, with GUI component
9 --error-printer Same as --runner=ErrorPrinter
16 --template=TEMPLATE Use TEMPLATE file to generate the test runner
17 --include=HEADER Include HEADER in test runner before other headers
35 runner = None
81 ['version', 'output=', 'runner=', 'gui=',
92 global outputFileName, templateFileName, runner, gui, haveStandardLibrary, factor, longlong
101 elif o == '--runner':
102 runner = a
110 runner = 'ErrorPrinter'
139 if gui and not runner:
140 runner = 'StdioPrinter'
422 if runner:
423 output.write( "#include <cxxtest/%s.h>\n" % runner )
430 '''Write the main() function for the test runner'''
435 output.write( ' return CxxTest::GuiTuiRunner<CxxTest::%s, CxxTest::%s>( argc, argv ).run();\n' % (gui, runner) )
437 elif runner:
441 output.write( ' return CxxTest::%s().run();\n' % runner )