public void SetUp()
 {
     TheConstraint        = new ThrowsExceptionConstraint();
     ExpectedDescription  = "an exception to be thrown";
     StringRepresentation = "<throwsexception>";
 }
 public ThrowsExceptionConstraintResult(ThrowsExceptionConstraint constraint, Exception caughtException)
     : base(constraint, caughtException, caughtException != null)
 {
 }