Lines Matching +full:self +full:- +full:test
4 def __init__(self): argument
6 print(' -- {}.__init__'.format(self.sub_class))
8 def pre_suite(self, testcount, testlist): argument
9 '''run commands before test_runner goes into a test loop'''
10 self.testcount = testcount
11 self.testlist = testlist
12 if self.args.verbose > 1:
13 print(' -- {}.pre_suite'.format(self.sub_class))
15 def post_suite(self, index): argument
16 '''run commands after test_runner completes the test loop
17 index is the last ordinal number of test that was attempted'''
18 if self.args.verbose > 1:
19 print(' -- {}.post_suite'.format(self.sub_class))
21 def pre_case(self, caseinfo, test_skip): argument
22 '''run commands before test_runner does one test'''
23 if self.args.verbose > 1:
24 print(' -- {}.pre_case'.format(self.sub_class))
25 self.args.caseinfo = caseinfo
26 self.args.test_skip = test_skip
28 def post_case(self): argument
29 '''run commands after test_runner does one test'''
30 if self.args.verbose > 1:
31 print(' -- {}.post_case'.format(self.sub_class))
33 def pre_execute(self): argument
34 '''run command before test-runner does the execute step'''
35 if self.args.verbose > 1:
36 print(' -- {}.pre_execute'.format(self.sub_class))
38 def post_execute(self): argument
39 '''run command after test-runner does the execute step'''
40 if self.args.verbose > 1:
41 print(' -- {}.post_execute'.format(self.sub_class))
43 def adjust_command(self, stage, command): argument
45 if self.args.verbose > 1:
46 print(' -- {}.adjust_command {}'.format(self.sub_class, stage))
65 def add_args(self, parser): argument
67 self.argparser = parser
68 return self.argparser
70 def check_args(self, args, remaining): argument
72 self.args = args
73 if self.args.verbose > 1:
74 print(' -- {}.check_args'.format(self.sub_class))