assertThat(StepEventBus.getEventBus().aStepInTheCurrentTestHasFailed(), is(false));
}
@Test
public void should_support_calling_protected_methods_in_parent_classes() {
MyInheritedStepLibrary myStepLibrary = stepFactory.getStepLibraryFor(MyInheritedStepLibrary.class);
assertThat(myStepLibrary.anotherStep(), is(true));
assertThat(StepEventBus.getEventBus().aStepInTheCurrentTestHasFailed(), is(false));
}