Add startGeodeServer(..) alias method for the startGemFireServer(..) method in the ForkingClientServerIntegrationTestsSupport class.

This commit is contained in:
John Blum
2021-09-09 11:17:10 -07:00
parent a39f40841d
commit bc1fcd6cd1

View File

@@ -81,6 +81,12 @@ public abstract class ForkingClientServerIntegrationTestsSupport extends ClientS
waitForServerToStart("localhost", availablePort);
}
public static void startGeodeServer(@NonNull Class<?> geodeServerConfigurationClass, String... arguments)
throws IOException {
startGemFireServer(geodeServerConfigurationClass, arguments);
}
protected static int setAndGetCacheServerPortProperty(int port) {
System.setProperty(GEMFIRE_CACHE_SERVER_PORT_PROPERTY, String.valueOf(port));