4849505152535455565758
@Override protected Object runReflectiveCall() throws Throwable { return createTest(); } }; testObject = reflectiveCallable.run(); testObjectMap.put(getTestClass(), testObject); } catch (Throwable e) { return new Fail(e); } }
132133134135136137138139140141142
// CHECKSTYLE:SKIP : Base class API protected Object runReflectiveCall() throws Throwable { return createTest(); } }; test = reflectiveCallable.run(); } // CHECKSTYLE:SKIP : ReflectiveCallable API catch (Throwable e) { return new Fail(e); }
141142143144145146147148149150151