/**
* Return suite with all tests of the class.
*/
public static Test suite() {
BaseTestSuite suite =
new BaseTestSuite("CallableStatementTest suite");
suite.addTest(baseSuite("CallableStatementTest:embedded"));
suite.addTest(TestConfiguration.clientServerDecorator(
baseSuite("CallableStatementTest:client")));
suite.addTest(TestConfiguration.clientServerDecorator(
TestConfiguration.connectionCPDecorator( baseSuite
("CallableStatementTest:logical"))));
return suite;
}