@Deprecated public class GroovyAssert extends Object
GroovyAssert class instead| Constructor | Description |
|---|---|
GroovyAssert() |
Deprecated.
|
| Modifier and Type | Method | Description |
|---|---|---|
static Throwable |
shouldFail(Closure code) |
Deprecated.
Asserts that the given code closure fails when it is evaluated
|
static Throwable |
shouldFail(Class clazz,
Closure code) |
Deprecated.
Asserts that the given code closure fails when it is evaluated
and that a particular exception is thrown.
|
static Throwable |
shouldFailWithCause(Class clazz,
Closure code) |
Deprecated.
Asserts that the given code closure fails when it is evaluated
and that a particular exception can be attributed to the cause.
|
public static Throwable shouldFail(Closure code)
code - the code expected to throw the exceptionpublic static Throwable shouldFail(Class clazz, Closure code)
clazz - the class of the expected exceptioncode - the closure that should failpublic static Throwable shouldFailWithCause(Class clazz, Closure code)
If a match is found the error message associated with the matching exception is returned. If no match was found the method will fail.
clazz - the class of the expected exceptioncode - the closure that should fail