public class GroovyTestCase
extends TestCase
A JUnit 3 TestCase base class in Groovy. In case JUnit 4 is used, see GroovyAssert.
| Modifiers | Name | Description |
|---|---|---|
static String |
TEST_SCRIPT_NAME_PREFIX |
Prefix used when generating temporary script names for test helpers. |
protected static Logger |
log |
Logger available to this test case and its subclasses. |
| Type Params | Return Type | Name and description |
|---|---|---|
|
protected void |
assertArrayEquals(Object[] expected, Object[] value)Asserts that the arrays are equivalent and contain the same values |
|
protected void |
assertContains(char expected, char[] array)Asserts that the array of characters contains a given char |
|
protected void |
assertContains(int expected, int[] array)Asserts that the array of ints contains a given int |
|
public static void |
assertEquals(String message, Object expected, Object actual)Asserts that two values compare equal using Groovy's coercion-aware equality semantics. |
|
public static void |
assertEquals(Object expected, Object actual)Asserts that two values compare equal using Groovy's coercion-aware equality semantics. |
|
public static void |
assertEquals(String expected, String actual)Asserts that two strings compare equal using Groovy's coercion-aware equality semantics. |
|
protected void |
assertInspect(Object value, String expected)Asserts that the value of inspect() on the given object matches the given text string |
|
protected void |
assertLength(int length, char[] array)Asserts that the array of characters has a given length |
|
protected void |
assertLength(int length, int[] array)Asserts that the array of ints has a given length |
|
protected void |
assertLength(int length, Object[] array)Asserts that the array of objects has a given length |
|
protected void |
assertScript(String script)see GroovyAssert.assertScript |
|
protected void |
assertToString(Object value, String expected)Asserts that the value of toString() on the given object matches the given text string |
|
protected String |
fixEOLs(String value)Returns a copy of a string in which all EOLs are \n. |
|
public String |
getMethodName()Returns the underlying JUnit method name before any AgileDox formatting is applied. |
|
public String |
getName()Overload the getName() method to make the test cases look more like AgileDox (thanks to Joe Walnes for this tip!) |
|
protected String |
getTestClassName()Builds a unique script name for the current test method. |
|
public static boolean |
notYetImplemented(Object caller)see GroovyAssert.notYetImplemented |
|
public boolean |
notYetImplemented()Convenience method for subclasses of GroovyTestCase, identical to . |
|
protected String |
shouldFail(Closure code)see GroovyAssert.shouldFail |
|
protected String |
shouldFail(Class clazz, Closure code)see GroovyAssert.shouldFail |
|
protected String |
shouldFail(Class clazz, String script)see GroovyAssert.shouldFail |
|
protected String |
shouldFail(String script)see GroovyAssert.shouldFail |
|
protected String |
shouldFailWithCause(Class clazz, Closure code)see GroovyAssert.shouldFailWithCause |
Prefix used when generating temporary script names for test helpers.
Logger available to this test case and its subclasses.
Asserts that the arrays are equivalent and contain the same values
Asserts that the array of characters contains a given char
expected - expected character to be foundarray - the arrayAsserts that the array of ints contains a given int
expected - expected intarray - the arrayAsserts that two values compare equal using Groovy's coercion-aware equality semantics.
message - the message to use if the assertion failsexpected - the expected valueactual - the actual valueAsserts that two values compare equal using Groovy's coercion-aware equality semantics.
expected - the expected valueactual - the actual valueAsserts that two strings compare equal using Groovy's coercion-aware equality semantics.
expected - the expected valueactual - the actual valueAsserts that the value of inspect() on the given object matches the given text string
value - the object to be output to the consoleexpected - the expected String representationAsserts that the array of characters has a given length
length - expected lengtharray - the arrayAsserts that the array of ints has a given length
length - expected lengtharray - the arrayAsserts that the array of objects has a given length
length - expected lengtharray - the arrayAsserts that the value of toString() on the given object matches the given text string
value - the object to be output to the consoleexpected - the expected String representationReturns the underlying JUnit method name before any AgileDox formatting is applied.
Overload the getName() method to make the test cases look more like AgileDox (thanks to Joe Walnes for this tip!)
Builds a unique script name for the current test method.
Convenience method for subclasses of GroovyTestCase, identical to
GroovyTestCase.notYetImplemented(this); .
false when not itself already in the call stack