verify(ioUtilsWrapper, times(1)).toString(SpecRunnerTemplate.REQUIRE_JS.getTemplate());
}
@Test
public void shouldReadDefaultSpecRunnerTemplateWhenNoneIsProvided() throws IOException {
IOUtilsWrapper ioUtilsWrapper = mock(IOUtilsWrapper.class);
this.generatorConfiguration = this.initGenerator(ioUtilsWrapper,null,null);
this.generatorConfiguration.getRunnerTemplate();
verify(ioUtilsWrapper, times(1)).toString(SpecRunnerTemplate.DEFAULT.getTemplate());
}