public void should_call_object_methods_normally_after_test_failures() {
StepEventBus.getEventBus().testSuiteStarted(MyTestCase.class);
StepEventBus.getEventBus().testStarted("app_should_work");
FlatScenarioSteps steps = stepFactory.getStepLibraryFor(FlatScenarioSteps.class);
steps.step_one();
steps.failingStep();
String stringValue = steps.toString();
steps.step_two();
StepEventBus.getEventBus().testFinished(testOutcome);
List<TestOutcome> results = stepListener.getTestOutcomes();
TestOutcome testOutcome = results.get(0);
assertThat(testOutcome.getTestSteps().size(), is(3));