| 76 | const char* StepManagerTest::no_match = "no match"; |
| 77 | |
| 78 | TEST_F(StepManagerTest, holdsNonConflictingSteps) { |
| 79 | ASSERT_EQ(0, StepManager::count()); |
| 80 | StepManager::addStepDefinition(a_matcher); |
| 81 | StepManager::addStepDefinition(another_matcher); |
| 82 | StepManager::addStepDefinition(a_third_matcher); |
| 83 | ASSERT_EQ(3, StepManager::count()); |
| 84 | } |
| 85 | |
| 86 | TEST_F(StepManagerTest, holdsConflictingSteps) { |
| 87 | ASSERT_EQ(0, StepManager::count()); |
nothing calls this directly
no outgoing calls
no test coverage detected