use of org.junit.experimental.theories.Theories in project junit4 by junit-team.
the class TheoryTestUtils method runTheoryClass.
public static Result runTheoryClass(Class<?> testClass) throws InitializationError {
Runner theoryRunner = new Theories(testClass);
Request request = Request.runner(theoryRunner);
return new JUnitCore().run(request);
}