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