public static Test suite() {
BaseTestSuite suite = new BaseTestSuite("DataSourceTest suite");
// Add the tests that only run with embedded
suite.addTest(getEmbeddedSuite("embedded"));
// Add tests that will run with embedded
suite.addTest(baseSuite(":embedded"));
if (!JDBC.vmSupportsJSR169()) {
// and network server/client
suite.addTest(TestConfiguration.clientServerDecorator(
baseSuite(":client")));
// Add the tests that only run with client