protected static void startServer(String url, ReadOnlyProps props) throws Exception {
assertNull(BaseTest.driver);
// only load the test driver if we are testing locally - for integration tests, we want to
// test on a wider scale
if (PhoenixEmbeddedDriver.isTestUrl(url)) {
PhoenixTestDriver driver = initDriver(props);
assertTrue(DriverManager.getDriver(url) == driver);
driver.connect(url, TestUtil.TEST_PROPERTIES);
}
}