StepEventBus.getEventBus().testSuiteStarted(MyTestCase.class);
StepEventBus.getEventBus().testStarted("app_should_work");
FluentScenarioSteps steps = stepFactory.getStepLibraryFor(FluentScenarioSteps.class);
steps.when().someone().does().this_sort_of_thing();
List<TestOutcome> results = stepListener.getTestOutcomes();
TestOutcome testOutcome = results.get(0);
assertThat(testOutcome.getTestSteps().get(0).getDescription(), is("When someone does this sort of thing"));