示例#1
0
  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);
    }
  }
示例#2
0
 public void tearDown() throws Exception {
   super.tearDown();
   undeploy();
 }