/**
* Tests that all the mock objects can be initialised correctly.
*/
public void testInitialisation() {
new ResultSetMock("resultSet", expectations);
new ConnectionMock("connection", expectations);
new StatementMock("statement", expectations);
new PreparedStatementMock("preparedStatement", expectations);
new CallableStatementMock("callableStatement", expectations);
new DatabaseMetaDataMock("databaseMetaData", expectations);
}