| 77 | */ |
| 78 | |
| 79 | TEST(GTestConvertor, correctNumberOfTestCases) |
| 80 | { |
| 81 | LONGS_EQUAL(2, ::testing::UnitTest::GetInstance()->total_test_case_count()); |
| 82 | CHECK(::testing::UnitTest::GetInstance()->GetTestCase(0)); |
| 83 | CHECK(::testing::UnitTest::GetInstance()->GetTestCase(1)); |
| 84 | CHECK(::testing::UnitTest::GetInstance()->GetTestCase(2) == NULL); |
| 85 | } |
| 86 | |
| 87 | TEST(GTestConvertor, correctNumberOfTestsInTheTestCases) |
| 88 | { |
nothing calls this directly
no test coverage detected