| 38 | #endif |
| 39 | |
| 40 | TEST(dmLog, TestUninitialized) |
| 41 | { |
| 42 | dmLogError("Logging an error"); |
| 43 | |
| 44 | dLib::SetDebugMode(false); // avoid spam in the unit tests |
| 45 | |
| 46 | dmLogError("Logging an second error"); |
| 47 | |
| 48 | dLib::SetDebugMode(true); |
| 49 | } |
| 50 | |
| 51 | TEST(dmLog, Init) |
| 52 | { |
nothing calls this directly
no test coverage detected