From 430c64fddadad5589c3d43edba84a931dfe2c920 Mon Sep 17 00:00:00 2001 From: John Blum Date: Tue, 18 Aug 2020 01:04:20 -0700 Subject: [PATCH] Extends STDG's IntegrationTestsSupport class. --- ...AsyncInlineCachingRegionConfigurerIntegrationTests.java | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/spring-geode/src/test/java/org/springframework/geode/cache/AsyncInlineCachingRegionConfigurerIntegrationTests.java b/spring-geode/src/test/java/org/springframework/geode/cache/AsyncInlineCachingRegionConfigurerIntegrationTests.java index 43a0225e..e65d18bd 100644 --- a/spring-geode/src/test/java/org/springframework/geode/cache/AsyncInlineCachingRegionConfigurerIntegrationTests.java +++ b/spring-geode/src/test/java/org/springframework/geode/cache/AsyncInlineCachingRegionConfigurerIntegrationTests.java @@ -51,6 +51,7 @@ import org.springframework.beans.factory.annotation.Qualifier; import org.springframework.context.annotation.Bean; import org.springframework.data.gemfire.config.annotation.EnableEntityDefinedRegions; import org.springframework.data.gemfire.config.annotation.PeerCacheApplication; +import org.springframework.data.gemfire.tests.integration.IntegrationTestsSupport; import org.springframework.data.gemfire.tests.mock.annotation.EnableGemFireMockObjects; import org.springframework.data.repository.CrudRepository; import org.springframework.test.context.junit4.SpringRunner; @@ -62,7 +63,7 @@ import lombok.RequiredArgsConstructor; import lombok.ToString; /** - * Integration Tests for {@link AsyncInlineCachingRegionConfigurer}. + * Integration Tests for {@link AsyncInlineCachingRegionConfigurer} and {@link RepositoryAsyncEventListener}. * * @author John Blum * @see org.junit.Test @@ -74,14 +75,16 @@ import lombok.ToString; * @see org.apache.geode.cache.asyncqueue.AsyncEventQueue * @see org.springframework.data.gemfire.config.annotation.PeerCacheApplication * @see org.springframework.data.gemfire.tests.mock.annotation.EnableGemFireMockObjects + * @see org.springframework.data.gemfire.tests.integration.IntegrationTestsSupport * @see org.springframework.data.repository.CrudRepository * @see org.springframework.geode.cache.AsyncInlineCachingRegionConfigurer + * @see org.springframework.geode.cache.RepositoryAsyncEventListener * @see org.springframework.test.context.junit4.SpringRunner * @since 1.4.0 */ @RunWith(SpringRunner.class) @SuppressWarnings("unused") -public class AsyncInlineCachingRegionConfigurerIntegrationTests { +public class AsyncInlineCachingRegionConfigurerIntegrationTests extends IntegrationTestsSupport { @Autowired private Cache peerCache;