(cls)
| 332 | class TestHistorySQL(unittest.TestCase, HistoryCommon, TestHistoryEvents): |
| 333 | @classmethod |
| 334 | def setUpClass(cls): |
| 335 | cls.start_server_and_client() |
| 336 | cls.srv.iserver.history_manager.set_storage(HistorySQLite(":memory:")) |
| 337 | cls.create_var() |
| 338 | cls.create_srv_events() |
| 339 | |
| 340 | @classmethod |
| 341 | def tearDownClass(cls): |
nothing calls this directly
no test coverage detected