com.mockrunner.connector.ConnectorTestCaseAdapter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mockrunner-jdk1.3-j2ee1.3 Show documentation
Show all versions of mockrunner-jdk1.3-j2ee1.3 Show documentation
Mockrunner is a lightweight framework for unit testing applications
in the J2EE environment. It supports servlets, filters, tag classes
and Struts actions. It includes a JDBC a JMS and a JCA test
framework and can be used to test EJB based applications.
The newest version!
package com.mockrunner.connector;
import java.util.List;
import com.mockrunner.base.BaseTestCase;
/**
* Delegator for {@link com.mockrunner.connector.ConnectorTestModule}. You can
* subclass this adapter or use {@link com.mockrunner.connector.ConnectorTestModule}
* directly (so your test case can use another base class).
* This adapter extends {@link com.mockrunner.base.BaseTestCase}.
* It can be used if you want to use several modules in conjunction.
* This class is generated from the {@link com.mockrunner.connector.ConnectorTestModule}
* and should not be edited directly.
*/
public abstract class ConnectorTestCaseAdapter extends BaseTestCase
{
private ConnectorTestModule connectorTestModule;
public ConnectorTestCaseAdapter()
{
}
public ConnectorTestCaseAdapter(String name)
{
super(name);
}
protected void tearDown() throws Exception
{
super.tearDown();
connectorTestModule = null;
}
/**
* Creates the {@link com.mockrunner.connector.ConnectorTestModule}. If you
* overwrite this method, you must call super.setUp()
.
*/
protected void setUp() throws Exception
{
super.setUp();
connectorTestModule = createConnectorTestModule(getConnectorMockObjectFactory());
}
/**
* Gets the {@link com.mockrunner.connector.ConnectorTestModule}.
* @return the {@link com.mockrunner.connector.ConnectorTestModule}
*/
protected ConnectorTestModule getConnectorTestModule()
{
return connectorTestModule;
}
/**
* Sets the {@link com.mockrunner.connector.ConnectorTestModule}.
* @param connectorTestModule the {@link com.mockrunner.connector.ConnectorTestModule}
*/
protected void setConnectorTestModule(ConnectorTestModule connectorTestModule)
{
this.connectorTestModule = connectorTestModule;
}
/**
* Delegates to {@link com.mockrunner.connector.ConnectorTestModule#verifyConnectionClosed}
*/
protected void verifyConnectionClosed()
{
connectorTestModule.verifyConnectionClosed();
}
/**
* Delegates to {@link com.mockrunner.connector.ConnectorTestModule#getInteractionHandler}
*/
protected InteractionHandler getInteractionHandler()
{
return connectorTestModule.getInteractionHandler();
}
/**
* Delegates to {@link com.mockrunner.connector.ConnectorTestModule#getInteractionList}
*/
protected List getInteractionList()
{
return connectorTestModule.getInteractionList();
}
/**
* Delegates to {@link com.mockrunner.connector.ConnectorTestModule#getCreatedIndexedRecords(String)}
*/
protected List getCreatedIndexedRecords(String recordName)
{
return connectorTestModule.getCreatedIndexedRecords(recordName);
}
/**
* Delegates to {@link com.mockrunner.connector.ConnectorTestModule#getCreatedIndexedRecords}
*/
protected List getCreatedIndexedRecords()
{
return connectorTestModule.getCreatedIndexedRecords();
}
/**
* Delegates to {@link com.mockrunner.connector.ConnectorTestModule#getCreatedMappedRecords(String)}
*/
protected List getCreatedMappedRecords(String recordName)
{
return connectorTestModule.getCreatedMappedRecords(recordName);
}
/**
* Delegates to {@link com.mockrunner.connector.ConnectorTestModule#getCreatedMappedRecords}
*/
protected List getCreatedMappedRecords()
{
return connectorTestModule.getCreatedMappedRecords();
}
/**
* Delegates to {@link com.mockrunner.connector.ConnectorTestModule#verifyAllInteractionsClosed}
*/
protected void verifyAllInteractionsClosed()
{
connectorTestModule.verifyAllInteractionsClosed();
}
/**
* Delegates to {@link com.mockrunner.connector.ConnectorTestModule#verifyInteractionClosed(int)}
*/
protected void verifyInteractionClosed(int index)
{
connectorTestModule.verifyInteractionClosed(index);
}
/**
* Delegates to {@link com.mockrunner.connector.ConnectorTestModule#verifyNumberCreatedIndexedRecords(int)}
*/
protected void verifyNumberCreatedIndexedRecords(int expected)
{
connectorTestModule.verifyNumberCreatedIndexedRecords(expected);
}
/**
* Delegates to {@link com.mockrunner.connector.ConnectorTestModule#verifyNumberCreatedIndexedRecords(String, int)}
*/
protected void verifyNumberCreatedIndexedRecords(String recordName, int expected)
{
connectorTestModule.verifyNumberCreatedIndexedRecords(recordName, expected);
}
/**
* Delegates to {@link com.mockrunner.connector.ConnectorTestModule#verifyNumberCreatedMappedRecords(int)}
*/
protected void verifyNumberCreatedMappedRecords(int expected)
{
connectorTestModule.verifyNumberCreatedMappedRecords(expected);
}
/**
* Delegates to {@link com.mockrunner.connector.ConnectorTestModule#verifyNumberCreatedMappedRecords(String, int)}
*/
protected void verifyNumberCreatedMappedRecords(String recordName, int expected)
{
connectorTestModule.verifyNumberCreatedMappedRecords(recordName, expected);
}
/**
* Delegates to {@link com.mockrunner.connector.ConnectorTestModule#verifyLocalTransactionCommitted}
*/
protected void verifyLocalTransactionCommitted()
{
connectorTestModule.verifyLocalTransactionCommitted();
}
/**
* Delegates to {@link com.mockrunner.connector.ConnectorTestModule#verifyLocalTransactionNotCommitted}
*/
protected void verifyLocalTransactionNotCommitted()
{
connectorTestModule.verifyLocalTransactionNotCommitted();
}
/**
* Delegates to {@link com.mockrunner.connector.ConnectorTestModule#verifyLocalTransactionRolledBack}
*/
protected void verifyLocalTransactionRolledBack()
{
connectorTestModule.verifyLocalTransactionRolledBack();
}
/**
* Delegates to {@link com.mockrunner.connector.ConnectorTestModule#verifyLocalTransactionNotRolledBack}
*/
protected void verifyLocalTransactionNotRolledBack()
{
connectorTestModule.verifyLocalTransactionNotRolledBack();
}
}