use of jodd.exception.UncheckedException in project jodd by oblac.
the class DbBaseTest method init.
protected void init() {
LoggerFactory.setLoggerFactory(new NOPLoggerFactory() {
@Override
public Logger getLogger(String name) {
return new NOPLogger("") {
@Override
public boolean isWarnEnabled() {
return true;
}
@Override
public void warn(String message) {
throw new UncheckedException("NO WARNINGS ALLOWED: " + message);
}
@Override
public void warn(String message, Throwable throwable) {
throw new UncheckedException("NO WARNINGS ALLOWED: " + message);
}
};
}
});
DbOomManager.resetAll();
dboom = DbOomManager.getInstance();
connectionPool = new CoreConnectionPool();
}
use of jodd.exception.UncheckedException in project jodd by oblac.
the class MadvocSuiteBase method startTomcat.
/**
* Starts Tomcat.
*/
protected static void startTomcat(String webXmlFileName) {
if (server != null) {
return;
}
server = new TomcatTestServer(webXmlFileName);
try {
server.start();
System.out.println("Tomcat test server started");
} catch (Exception e) {
throw new UncheckedException(e);
}
}
Aggregations