| 92 | }; |
| 93 | |
| 94 | TEST_F(StepCallChainTest, failsIfNoStep) { |
| 95 | StepCallChain scc(0, NULL, &NO_INVOKE_ARGS, aroundHooks); |
| 96 | EXPECT_FALSE(scc.exec().isSuccess()); |
| 97 | EXPECT_EQ("", markers.str()); |
| 98 | } |
| 99 | |
| 100 | TEST_F(StepCallChainTest, stepExecutionReturnsTheExpectedResult) { |
| 101 | std::shared_ptr<MarkingAroundStepHook> hook(std::make_shared<MarkingAroundStepHook>()); |
nothing calls this directly
no test coverage detected