| 12 | namespace toft { |
| 13 | |
| 14 | TEST(StaticAssert, Test) |
| 15 | { |
| 16 | TOFT_STATIC_ASSERT(1 == 1); |
| 17 | TOFT_STATIC_ASSERT(1 == 1, "1 should be equal to 1"); |
| 18 | } |
| 19 | |
| 20 | TEST(StaticAssert, NoCompileTest) |
| 21 | { |
nothing calls this directly
no outgoing calls
no test coverage detected