if (testMethod.getAnnotation(Ignore.class.getName()) != null) {
testNotifier.fireTestIgnored();
} else {
testNotifier.fireTestStarted();
try {
FrameworkMethod osgiTestMethod = osgiTestClass.getTestMethod(testMethod.getName());
makeTestStatement(osgiTestMethod).evaluate();
} catch (AssumptionViolatedException e) {
testNotifier.addFailedAssumption(e);
} catch (Throwable e) {
testNotifier.addFailure(e);