/**
* Tests that all the mock objects can be initialised correctly.
*/
public void testInitialisation() {
//new WriterMock("writer", expectations);
new ReaderMock("reader", expectations);
new InputStreamMock("inputStream", expectations);
new OutputStreamMock("outputStream", expectations);
new FilterInputStreamMock("filterInputStream", expectations,
System.in);
}