(self)
| 100 | |
| 101 | class DbConnectionTestCase(DbTestCase): |
| 102 | def setUp(self): |
| 103 | # NOTE: It's important we re-establish a connection on each setUp |
| 104 | self.setUpClass() |
| 105 | cfg.CONF.reset() |
| 106 | |
| 107 | def tearDown(self): |
| 108 | # NOTE: It's important we disconnect here otherwise tests will fail |
nothing calls this directly
no test coverage detected