* @throws Exception
*/
protected void executeTest(OsgiJUnitTest test) throws Exception {
// create holder
// since we're inside OSGi, we have to use the special loading procedure
OsgiTestInfoHolder holder = HolderLoader.INSTANCE.getHolder();
// read the test to be executed
String testName = holder.getTestMethodName();
if (log.isDebugEnabled())
log.debug("Reading test [" + testName + "] for execution inside OSGi");
// execute the test
TestResult result = runTest(test, testName);