public void a_step_following_an_ignored_step_will_be_executed_normally() {
StepEventBus.getEventBus().testSuiteStarted(MyTestCase.class);
StepEventBus.getEventBus().testStarted("app_should_work");
FlatScenarioSteps steps = stepFactory.getStepLibraryFor(FlatScenarioSteps.class);
steps.step_one();
steps.programmaticallyIgnoredStep();
steps.step_two();
steps.step_three();
StepEventBus.getEventBus().testFinished(testOutcome);
List<TestOutcome> results = stepListener.getTestOutcomes();
TestOutcome testOutcome = results.get(0);