(self)
| 29 | self.cmdline = CsCmdLine("cmdline", {}) |
| 30 | |
| 31 | def test_init(self): |
| 32 | csconfig = CsConfig() |
| 33 | csconfig.cl = self.cmdline |
| 34 | csconfig.set_address() |
| 35 | |
| 36 | csredundant = CsRedundant(csconfig) |
| 37 | self.assertTrue(csredundant is not None) |
| 38 | |
| 39 | |
| 40 | if __name__ == '__main__': |
nothing calls this directly
no test coverage detected