| 23 | #include "singa/utils/logging.h" |
| 24 | |
| 25 | TEST(Logging, InfoLogging) { |
| 26 | int a = 3; |
| 27 | CHECK_EQ(a, 3); |
| 28 | LOG(INFO) << "test info logging"; |
| 29 | } |
| 30 | |
| 31 | TEST(Logging, WarningLogging) { |
| 32 | int a = 4; |
nothing calls this directly
no test coverage detected