diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/integration/ForkingClientServerIntegrationTestsSupport.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/integration/ForkingClientServerIntegrationTestsSupport.java index 0de2d56..324669c 100644 --- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/integration/ForkingClientServerIntegrationTestsSupport.java +++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/integration/ForkingClientServerIntegrationTestsSupport.java @@ -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));