/**
* Tests that all the mock objects can be initialised correctly.
*/
public void testInitialisation() {
new CollectionMock("collection", expectations);
new ListMock("list", expectations);
new SetMock("set", expectations);
new IteratorMock("iterator", expectations);
new MapMock("map", expectations);
}