def test_help_function(self): sys.argv = ['run', 'function_normal', '-h'] run()
def test_help_method(self): sys.argv = ['run', 'method', '-cClassToRun', '-h'] run()
def test_list_methods(self): sys.argv = ['run', '-cClassToRun'] run()
def test_list(self): sys.argv = ['run'] run()
def test_run_method(self): sys.argv = ['run', 'method', '-cClassToRun'] run()
def test_run(self): sys.argv = ['run', 'function_normal', '1', 'b=test words'] run()