Package groovy.test
Class GroovyTestCase
java.lang.Object
junit.framework.Assert
junit.framework.TestCase
groovy.test.GroovyTestCase
- All Implemented Interfaces:
junit.framework.Test
public class GroovyTestCase
extends junit.framework.TestCase
A JUnit 3
TestCase
base class in Groovy.
In case JUnit 4 is used, see GroovyAssert
.- See Also:
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected void
assertArrayEquals
(Object[] expected, Object[] value) Asserts that the arrays are equivalent and contain the same valuesprotected void
assertContains
(char expected, char[] array) Asserts that the array of characters contains a given charprotected void
assertContains
(int expected, int[] array) Asserts that the array of ints contains a given intstatic void
assertEquals
(Object expected, Object actual) static void
assertEquals
(String message, Object expected, Object actual) static void
assertEquals
(String expected, String actual) protected void
assertInspect
(Object value, String expected) Asserts that the value of inspect() on the given object matches the given text stringprotected void
assertLength
(int length, char[] array) Asserts that the array of characters has a given lengthprotected void
assertLength
(int length, int[] array) Asserts that the array of ints has a given lengthprotected void
assertLength
(int length, Object[] array) Asserts that the array of objects has a given lengthprotected void
assertScript
(String script) protected void
assertToString
(Object value, String expected) Asserts that the value of toString() on the given object matches the given text stringprotected String
Returns a copy of a string in which all EOLs are \n.getName()
Overload the getName() method to make the test cases look more like AgileDox (thanks to Joe Walnes for this tip!)protected String
boolean
Convenience method for subclasses of GroovyTestCase, identical tostatic boolean
notYetImplemented
(Object caller) protected String
shouldFail
(Closure code) protected String
shouldFail
(Class clazz, Closure code) protected String
shouldFail
(Class clazz, String script) protected String
shouldFail
(String script) protected String
shouldFailWithCause
(Class clazz, Closure code) Methods inherited from class junit.framework.TestCase
assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertFalse, assertFalse, assertNotNull, assertNotNull, assertNotSame, assertNotSame, assertNull, assertNull, assertSame, assertSame, assertTrue, assertTrue, countTestCases, createResult, fail, fail, failNotEquals, failNotSame, failSame, format, run, run, runBare, runTest, setName, setUp, tearDown, toString
-
Field Details
-
log
-
TEST_SCRIPT_NAME_PREFIX
- See Also:
-
-
Constructor Details
-
GroovyTestCase
public GroovyTestCase()
-
-
Method Details
-
getName
Overload the getName() method to make the test cases look more like AgileDox (thanks to Joe Walnes for this tip!)- Overrides:
getName
in classjunit.framework.TestCase
-
getMethodName
-
assertArrayEquals
Asserts that the arrays are equivalent and contain the same values- Parameters:
expected
-value
-
-
assertLength
protected void assertLength(int length, char[] array) Asserts that the array of characters has a given length- Parameters:
length
- expected lengtharray
- the array
-
assertLength
protected void assertLength(int length, int[] array) Asserts that the array of ints has a given length- Parameters:
length
- expected lengtharray
- the array
-
assertLength
Asserts that the array of objects has a given length- Parameters:
length
- expected lengtharray
- the array
-
assertContains
protected void assertContains(char expected, char[] array) Asserts that the array of characters contains a given char- Parameters:
expected
- expected character to be foundarray
- the array
-
assertContains
protected void assertContains(int expected, int[] array) Asserts that the array of ints contains a given int- Parameters:
expected
- expected intarray
- the array
-
assertToString
Asserts that the value of toString() on the given object matches the given text string- Parameters:
value
- the object to be output to the consoleexpected
- the expected String representation
-
assertInspect
Asserts that the value of inspect() on the given object matches the given text string- Parameters:
value
- the object to be output to the consoleexpected
- the expected String representation
-
assertScript
- Throws:
Exception
-
getTestClassName
-
shouldFail
-
shouldFail
-
shouldFailWithCause
-
shouldFail
-
shouldFail
-
fixEOLs
Returns a copy of a string in which all EOLs are \n. -
notYetImplemented
-
notYetImplemented
public boolean notYetImplemented()Convenience method for subclasses of GroovyTestCase, identical toGroovyTestCase.notYetImplemented(this);
.- Returns:
false
when not itself already in the call stack- See Also:
-
assertEquals
-
assertEquals
-
assertEquals
-