@Test
public void shouldCreateRunnerInstance() throws Throwable {
//given
RunnerProvider provider = new RunnerProvider();
//when
RunnerImpl runner = provider.newInstance("org.mockito.internal.runners.JUnit45AndHigherRunnerImpl", this.getClass());
//then
assertNotNull(runner);
}