Methods Summary |
---|
public static junit.framework.Test | suite()
return getDeploySetup(BMTUnitTestCase.class, "bmt-test.jar");
|
public void | testDeploymentDescriptorStateful()
DeploymentDescriptorTesterRemote tester = (DeploymentDescriptorTesterRemote)getInitialContext().lookup("DeploymentDescriptorTester/remote");
tester.testStatefulWithoutTx();
tester.testStatefulWithTx();
|
public void | testDeploymentDescriptorStateless()
DeploymentDescriptorTesterRemote tester = (DeploymentDescriptorTesterRemote)getInitialContext().lookup("DeploymentDescriptorTester/remote");
tester.testStatelessWithoutTx();
tester.testStatelessWithTx();
|
public void | testStateful()
TesterRemote tester = (TesterRemote)getInitialContext().lookup("TesterBean/remote");
tester.testStatefulWithoutTx();
tester.testStatefulWithTx();
|
public void | testStateless()
TesterRemote tester = (TesterRemote)getInitialContext().lookup("TesterBean/remote");
tester.testStatelessWithoutTx();
tester.testStatelessWithTx();
|