com.tc.test.collections |
|
Java Source File Name | Type | Comment |
CollectionAssert.java | Class | A set of primitives for comparing collections in tests. |
CollectionComparer.java | Class | An object that knows how to compare collections of objects for equality. |
CollectionComparerTestBase.java | Class | Base for all tests that test
CollectionComparer s. |
CollectionMismatch.java | Class | Represents a single mismatch among collections. |
MissingObjectCollectionMismatch.java | Class | A
CollectionMismatch that is used when one collection is missing an object that's present in the other
collection. |
OrderedCollectionComparer.java | Class | A
CollectionComparer that requires the collections to be in the same order. |
OrderedCollectionComparerTest.java | Class | Unit test for
OrderedCollectionComparer . |
UnequalObjectCollectionMismatch.java | Class | A
CollectionMismatch that is used when two objects aren't equal to each other. |
UnequalObjectCountCollectionMismatch.java | Class | A
CollectionMismatch that is used when two collections don't contain the same number of instances of two
objects. |
UnorderedCollectionComparer.java | Class | A
CollectionComparer that doesn't require objects to be in the same order. |
UnorderedCollectionComparerTest.java | Class | Unit test for
UnorderedCollectionComparer . |
UnorderedUncountedCollectionComparer.java | Class | An
UnorderedCollectionComparer that further ignores whether the two collections have different numbers of
instances of the same object, as long as both collections have at least one of that object. |
UnorderedUncountedCollectionComparerTest.java | Class | Unit test for
UnorderedUncountedCollectionComparer . |