5758596061626364656667
utils.start(); // Start try { URLConnection connection = new URL("http://" + TestSuiteEnvironment.formatPossibleIpv6Address(masterAddress) + ":8080").openConnection(); connection.connect(); } finally { utils.stop(); // Stop } } protected abstract String getDomainConfigFile();
6869707172737475767778
if (Boolean.getBoolean("expression.audit")) { writeExpressionAudit(utils); } } finally { utils.stop(); // Stop } } @Test public void testMasterAndSlave() throws Exception {
8788899091929394959697
// Double-check server status by confirming server-one can accept a web request to the root URLConnection connection = new URL("http://" + TestSuiteEnvironment.formatPossibleIpv6Address(slaveAddress) + ":8080").openConnection(); connection.connect(); } finally { try { slaveUtils.stop(); } finally { masterUtils.stop(); } } }