groovy.util
Class GroovyAssert

java.lang.Object
  extended by groovy.util.GroovyAssert

public class GroovyAssert
extends Object


Constructor Summary
GroovyAssert()
           
 
Method Summary
static Throwable shouldFail(Class clazz, groovy.lang.Closure code)
          Asserts that the given code closure fails when it is evaluated and that a particular exception is thrown.
static Throwable shouldFail(groovy.lang.Closure code)
          Asserts that the given code closure fails when it is evaluated
static Throwable shouldFailWithCause(Class clazz, groovy.lang.Closure code)
          Asserts that the given code closure fails when it is evaluated and that a particular exception can be attributed to the cause.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

GroovyAssert

public GroovyAssert()
Method Detail

shouldFail

public static Throwable shouldFail(groovy.lang.Closure code)
Asserts that the given code closure fails when it is evaluated

Parameters:
code - the code expected to throw the exception
Returns:
the message of the thrown Throwable

shouldFail

public static Throwable shouldFail(Class clazz,
                                   groovy.lang.Closure code)
Asserts that the given code closure fails when it is evaluated and that a particular exception is thrown.

Parameters:
clazz - the class of the expected exception
code - the closure that should fail
Returns:
the message of the expected Throwable

shouldFailWithCause

public static Throwable shouldFailWithCause(Class clazz,
                                            groovy.lang.Closure code)
Asserts that the given code closure fails when it is evaluated and that a particular exception can be attributed to the cause. The expected exception class is compared recursively with any nested exceptions using getCause() until either a match is found or no more nested exceptions exist.

If a match is found the error message associated with the matching exception is returned. If no match was found the method will fail.

Parameters:
clazz - the class of the expected exception
code - the closure that should fail
Returns:
the message of the expected Throwable

Copyright © 2003-2012 The Codehaus. All rights reserved.