From bc1fcd6cd13e496a2f6d00cec6bb992f05ee98b3 Mon Sep 17 00:00:00 2001 From: John Blum Date: Thu, 9 Sep 2021 11:17:10 -0700 Subject: [PATCH] Add startGeodeServer(..) alias method for the startGemFireServer(..) method in the ForkingClientServerIntegrationTestsSupport class. --- .../ForkingClientServerIntegrationTestsSupport.java | 6 ++++++ 1 file changed, 6 insertions(+) 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));