@Test
public void runTestCase() {
try {
PelletOA3TestRunner runner = new PelletOA3TestRunner();
for( TestRunResult result : runner.run( test, 10 * 1000 ) ) {
RunResultType resultType = result.getResultType();
if( !RunResultType.PASSING.equals( resultType ) ) {
if( result.getCause() != null ) {
// FIXME Can get rid of conditional once #295 is fixed.
if ( ! ( result.getCause() instanceof FreshEntitiesException ) )
throw new RuntimeException( test.getIdentifier(), result.getCause() );