Add closeAnyGemFireCache() method as an alias to closeAnyApacheGeodeCache().

This commit is contained in:
John Blum
2023-06-24 11:00:48 -07:00
parent 8f92f720b5
commit aad71d8308

View File

@@ -289,6 +289,15 @@ public abstract class IntegrationTestsSupport {
closeGemFireCacheWaitOnCacheClosedEvent();
}
/**
* Alias for {@link #closeAnyApacheGeodeCache()}.
*
* @see #closeAnyApacheGeodeCache()
*/
public static void closeAnyGemFireCache() {
closeAnyApacheGeodeCache();
}
/**
* Closes any Apache Geode {@link Locator} after test (class/suite) execution.
*