(self, cmd_args)
| 28 | '''Tester''' |
| 29 | class Tester(): |
| 30 | def __init__(self, cmd_args): |
| 31 | self.cmd_args = cmd_args |
| 32 | config_parser = ConfigParser() |
| 33 | self.cfg, _ = config_parser(cmd_args.cfgfilepath) |
| 34 | '''start''' |
| 35 | def start(self): |
| 36 | # initialize |
nothing calls this directly
no test coverage detected