(self)
| 14 | assert isinstance(l, Log), ( |
| 15 | "Can not create skeleton Log instance.") |
| 16 | def test_empty_initialization(self): |
| 17 | l = Log() |
| 18 | assert isinstance(l, Log), ( |
| 19 | "Can not create empty Log instance.") |
| 20 | |
| 21 | class Test_addLogEntry: |
| 22 | def test_add_string_entry(self): |