Package org.gatein.pc.test.unit

Examples of org.gatein.pc.test.unit.Failure


      this.failure = failure;
   }

   public FailureResponse(FailureType type)
   {
      this(new Failure(new Throwable(), type));
   }
View Full Code Here


      {
         // OK good
      }
      else if (response instanceof FailureResponse)
      {
         Failure failure = ((FailureResponse)response).getFailure();
         AssertionFailedError afe = new AssertionFailedError(failure.getMessage());
         afe.initCause(failure.getStackTrace());
         throw afe;
      }
      else
      {
         throw new UnsupportedOperationException("Response " + response + " not implemented");
View Full Code Here

TOP

Related Classes of org.gatein.pc.test.unit.Failure

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.