|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjunit.framework.Assert
junit.framework.TestCase
com.gargoylesoftware.base.testing.BaseTestCase
public class BaseTestCase
An extension of junit.framework.TestCase that adds those methods that we really wish were part of JUnit.
| Constructor Summary | |
|---|---|
BaseTestCase(java.lang.String name)
Create an instance |
|
| Method Summary | |
|---|---|
void |
assertCollectionsEqual(java.util.Collection a,
java.util.Collection b)
Assert that the two collections are the same irrespective of order. |
static void |
assertFalse(boolean condition)
Assert that the specified condition is false. |
static void |
assertFalse(java.lang.String description,
boolean condition)
Assert that the specified condition is false. |
void |
assertInstanceOf(java.lang.Object object,
java.lang.Class clazz)
Assert that the specified object is an instance of this class |
void |
assertInstanceOf(java.lang.String label,
java.lang.Object object,
java.lang.Class clazz)
Assert that the specified object is an instance of this class |
static void |
assertSame(java.lang.Object a,
java.lang.Object b)
Assert that the two objects are the same. |
static void |
assertSame(java.lang.String description,
java.lang.Object a,
java.lang.Object b)
Assert that the two objects are the same. |
void |
notImplemented()
Convenience method to signal that this test hasn't been finished yet. |
| Methods inherited from class junit.framework.TestCase |
|---|
countTestCases, createResult, getName, run, run, runBare, runTest, setName, setUp, tearDown, toString |
| Methods inherited from class junit.framework.Assert |
|---|
assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertNotNull, assertNotNull, assertNotSame, assertNotSame, assertNull, assertNull, assertTrue, assertTrue, fail, fail, failNotEquals, failNotSame, failSame |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public BaseTestCase(java.lang.String name)
name - The name of the test| Method Detail |
|---|
public void notImplemented()
public void assertCollectionsEqual(java.util.Collection a,
java.util.Collection b)
a - The first collectionb - The second collection
public static void assertSame(java.lang.String description,
java.lang.Object a,
java.lang.Object b)
description - The failure message to use if the two objects are not the same.a - The first object to compare.b - The second object to compare.
public static void assertSame(java.lang.Object a,
java.lang.Object b)
a - The first object to compare.b - The second object to compare.
public static void assertFalse(java.lang.String description,
boolean condition)
description - The failure message to be used if the condition is not false.condition - The value to check.public static void assertFalse(boolean condition)
condition - The value to check.
public void assertInstanceOf(java.lang.String label,
java.lang.Object object,
java.lang.Class clazz)
label - A description of the testobject - The object to testclazz - The class
public void assertInstanceOf(java.lang.Object object,
java.lang.Class clazz)
object - The object to testclazz - The class
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||