You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Refactor the conditonal logic used to decide whether to remove the (test) working directory of a forked Process in ForkingClientServerIntegrationTests.
Copy file name to clipboardExpand all lines: spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/integration/ClientServerIntegrationTestsSupport.java
+3-4Lines changed: 3 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -42,19 +42,18 @@
42
42
importorg.springframework.lang.Nullable;
43
43
44
44
/**
45
-
* The {@link ClientServerIntegrationTestsSupport} class is a abstract base class encapsulating common functionality
46
-
* to support the implementation of GemFire client/server tests.
45
+
* Abstract base class encapsulating common functionality used to support the implementation of Apache Geode
Copy file name to clipboardExpand all lines: spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/integration/ForkingClientServerIntegrationTestsSupport.java
+10-5Lines changed: 10 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -51,12 +51,14 @@
51
51
importorg.springframework.lang.Nullable;
52
52
53
53
/**
54
-
* The {@link ForkingClientServerIntegrationTestsSupport} class is an abstract base class used to configure
55
-
* and bootstrap Apache Geode or VMware GemFire Server {@link Cache} and {@link ClientCache} applications.
54
+
* Abstract base class used to bootstrap Apache Geode {@link Cache} and/or {@link ClientCache} applications
55
+
* as independent (forked), {@link Process child processes}.
Copy file name to clipboardExpand all lines: spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/process/JavaProcessRunner.java
0 commit comments