public void setUp() throws Exception { super.setUp(); try { deploy(); } catch (RuntimeException e) { throw e; } catch (Exception e) { throw e; } catch (Error e) { throw e; } catch (Throwable e) { throw new RuntimeException(e); } }
public void tearDown() throws Exception { super.tearDown(); undeploy(); }