StepEventBus.getEventBus().testSuiteStarted(MyTestCase.class);
StepEventBus.getEventBus().testStarted("app_should_work");
FlatScenarioStepsWithoutPages steps = stepFactory.getStepLibraryFor(FlatScenarioStepsWithoutPages.class);
steps.step_one();
steps.step_two();
StepEventBus.getEventBus().testFinished(testOutcome);
List<TestStep> stepOutomes = stepListener.getTestOutcomes().get(0).getTestSteps();
assertThat(stepOutomes, everyItem(hasNoScreenshot()));