| 19 | namespace tensorflow { |
| 20 | |
| 21 | TEST(Logging, Log) { |
| 22 | LOG(INFO) << "Hello"; |
| 23 | LOG(INFO) << "Another log message"; |
| 24 | LOG(ERROR) << "Error message"; |
| 25 | VLOG(1) << "A VLOG message"; |
| 26 | VLOG(2) << "A higher VLOG message"; |
| 27 | } |
| 28 | |
| 29 | TEST(Logging, CheckChecks) { |
| 30 | CHECK(true); |
nothing calls this directly
no test coverage detected