| 74 | }; |
| 75 | |
| 76 | TEST(BenchmarkTest, DoesntCrash) { |
| 77 | ASSERT_THAT(g_model_path, testing::NotNull()); |
| 78 | |
| 79 | BenchmarkTfLiteModel benchmark(CreateParams()); |
| 80 | benchmark.Run(); |
| 81 | } |
| 82 | |
| 83 | class MaxDurationWorksTestListener : public BenchmarkListener { |
| 84 | void OnBenchmarkEnd(const BenchmarkResults& results) override { |
nothing calls this directly
no test coverage detected