public void testGetCustomRunnerTemplateNotFound() throws ResourceNotFoundException, MojoExecutionException, MojoFailureException, FileResourceCreationException {
this.subject.customRunnerTemplate = CUSTOM_RUNNER_TEMPLATE;
when(this.mavenProject.getFile()).thenReturn(this.projectFile);
when(this.projectFile.getParentFile()).thenReturn(this.parentProjectFile);
when(this.parentProjectFile.getAbsolutePath()).thenReturn(PARENT_PROJECT_PATH);
when(this.locator.getResourceAsFile(CUSTOM_RUNNER_TEMPLATE)).thenThrow(new FileResourceCreationException(CUSTOM_RUNNER_TEMPLATE));
this.subject.execute();
}