182183184185186187188189190191192
} catch (NamingException exc) { eachNotifier.addFailure(exc); } catch (NotSupportedException exc) { eachNotifier.addFailure(exc); } catch (SystemException exc) { eachNotifier.addFailure(exc); } catch (AssumptionViolatedException e) {
185186187188189190191192193194195
} catch (NotSupportedException exc) { eachNotifier.addFailure(exc); } catch (SystemException exc) { eachNotifier.addFailure(exc); } catch (AssumptionViolatedException e) { eachNotifier.addFailedAssumption(e); } // CHECKSTYLE:SKIP : base class API
192193194195196197198199200201202
catch (AssumptionViolatedException e) { eachNotifier.addFailedAssumption(e); } // CHECKSTYLE:SKIP : base class API catch (Throwable e) { eachNotifier.addFailure(e); } finally { rollback(tx, eachNotifier); eachNotifier.fireTestFinished(); }
245246247248249250251252253254255
} else { // Exception testResult.setException(Boolean.TRUE); testResult.setExceptionResult(e.toString()); } eachRunNotifier.addFailure(e); throw e; } finally { eachRunNotifier.fireTestFinished(); } //The test should fail in case the Actual Result returned by the test method did
270271272273274275276277278279280
try { statement.evaluate(); } catch (AssumptionViolatedException e) { eachNotifier.addFailedAssumption(e); } catch (Throwable e) { eachNotifier.addFailure(e); } finally { eachNotifier.fireTestFinished(); } }
310311312313314315316317318319320
} catch (AssumptionViolatedException e) { testNotifier.fireTestIgnored(); } catch (StoppedByUserException e) { throw e; } catch (Throwable e) { testNotifier.addFailure(e); } } // // Implementation of Filterable and Sortable