{
compileClass("HeliDBDocTest", s, targetDir);
ClassLoader cl = new EntityClassLoader(targetDir.getFileSystem().getLogAdapterHolder(), Thread.currentThread().getContextClassLoader(), Collections.singletonList(targetDir));
try
{
Class<?> c = cl.loadClass("HeliDBDocTest");
Object o = c.newInstance();
return c.getMethod("runTest", new Class[] { Object[].class }).invoke(o, new Object[] { args });
}
catch (Exception e)
{