(self)
| 8 | class PluginsCMDTest(unittest.TestCase): |
| 9 | |
| 10 | def setUp(self): |
| 11 | print(('Testing %s.%s' % (type(self).__name__, self._testMethodName))) |
| 12 | self.package = 'adaseq' |
| 13 | self.plugins_manager = PluginsManager() |
| 14 | |
| 15 | def tearDown(self): |
| 16 | super().tearDown() |
nothing calls this directly
no test coverage detected