StepEventBus.getEventBus().testSuiteStarted(MyTestCase.class);
StepEventBus.getEventBus().testStarted("app_should_work");
NestedScenarioSteps steps = stepFactory.getStepLibraryFor(NestedScenarioSteps.class);
steps.step1();
steps.nestedFailingStep();
steps.step2();
StepEventBus.getEventBus().testFinished(testOutcome);
List<TestOutcome> results = stepListener.getTestOutcomes();
TestOutcome testOutcome = results.get(0);