FrameworkMethod osgiTestMethod = osgiTestClass.getTestMethod(testMethod.getName());
makeTestStatement(osgiTestMethod).evaluate();
} catch (AssumptionViolatedException e) {
testNotifier.addFailedAssumption(e);
} catch (Throwable e) {
testNotifier.addFailure(e);
} finally {
testNotifier.fireTestFinished();
}
}