assertThat(types.get(0).getSimpleName(), equalTo("AnnotatedSteps"));
}
@Test(expected = GroovyClassInstantiationFailed.class)
public void shouldNotCreateStepsInstancesFromGroovyWhenResourceInvalid() {
GroovyStepsFactory factory = new GroovyStepsFactory(new MostUsefulConfiguration(),
new GroovyContext(asList("/org/jbehave/core/steps/groovy/invalidSteps.groovy")));
factory.stepsTypes();
}