(self)
| 23 | l = Log() |
| 24 | l.addLogEntry("Testing...") |
| 25 | def test_add_nonstring_entry(self): |
| 26 | l = Log() |
| 27 | with pytest.raises(TypeError): |
| 28 | l.addLogEntry(123) |
| 29 | |
| 30 | class Test_getLog: |
| 31 | def test_read_two_entries(self): |
nothing calls this directly
no test coverage detected