| 22 | namespace tflite { |
| 23 | |
| 24 | TEST(MinimalLogging, Basic) { |
| 25 | testing::internal::CaptureStderr(); |
| 26 | TFLITE_LOG_PROD(TFLITE_LOG_INFO, "Foo"); |
| 27 | EXPECT_EQ("INFO: Foo\n", testing::internal::GetCapturedStderr()); |
| 28 | } |
| 29 | |
| 30 | TEST(MinimalLogging, BasicFormatted) { |
| 31 | testing::internal::CaptureStderr(); |
nothing calls this directly
no test coverage detected