| 44 | }; |
| 45 | |
| 46 | TEST(TestRunner, ModelPath) { |
| 47 | ConcreteTestRunner runner; |
| 48 | EXPECT_EQ(runner.GetFullPath("test.bin"), "test.bin"); |
| 49 | runner.SetModelBaseDir("/tmp"); |
| 50 | EXPECT_EQ(runner.GetFullPath("test.bin"), "/tmp/test.bin"); |
| 51 | } |
| 52 | |
| 53 | TEST(TestRunner, InvocationId) { |
| 54 | ConcreteTestRunner runner; |
nothing calls this directly
no test coverage detected