From 4f61c6e94f21157e6d5717a898780f3e09b933e2 Mon Sep 17 00:00:00 2001 From: John Blum Date: Wed, 30 May 2018 15:03:08 -0700 Subject: [PATCH] Rename o.s.d.g.MockClientCacheApplicationTest to MockClientCacheApplicationIntegrationTests. --- ...a => MockClientCacheApplicationIntegrationTests.java} | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) rename spring-test-data-geode/src/test/java/org/springframework/data/gemfire/{MockClientCacheApplicationTest.java => MockClientCacheApplicationIntegrationTests.java} (88%) diff --git a/spring-test-data-geode/src/test/java/org/springframework/data/gemfire/MockClientCacheApplicationTest.java b/spring-test-data-geode/src/test/java/org/springframework/data/gemfire/MockClientCacheApplicationIntegrationTests.java similarity index 88% rename from spring-test-data-geode/src/test/java/org/springframework/data/gemfire/MockClientCacheApplicationTest.java rename to spring-test-data-geode/src/test/java/org/springframework/data/gemfire/MockClientCacheApplicationIntegrationTests.java index 6d2208f..ab130f7 100644 --- a/spring-test-data-geode/src/test/java/org/springframework/data/gemfire/MockClientCacheApplicationTest.java +++ b/spring-test-data-geode/src/test/java/org/springframework/data/gemfire/MockClientCacheApplicationIntegrationTests.java @@ -35,12 +35,15 @@ import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringRunner; /** - * Unit tests for an Apache Geode {@link ClientCache} application using mock objects. + * Integration tests for an Apache Geode {@link ClientCache} application using mock objects. * * @author John Blum * @see org.junit.Test - * @see org.apache.geode.Region + * @see org.apache.geode.cache.GemFireCache + * @see org.apache.geode.cahce.Region * @see org.apache.geode.cache.client.ClientCache + * @see org.springframework.data.gemfire.client.ClientCacheFactoryBean + * @see org.springframework.data.gemfire.client.ClientRegionFactoryBean * @see org.springframework.data.gemfire.config.annotation.ClientCacheApplication * @see org.springframework.data.gemfire.tests.mock.annotation.EnableGemFireMockObjects * @see org.springframework.test.context.ContextConfiguration @@ -50,7 +53,7 @@ import org.springframework.test.context.junit4.SpringRunner; @RunWith(SpringRunner.class) @ContextConfiguration @SuppressWarnings("all") -public class MockClientCacheApplicationTest { +public class MockClientCacheApplicationIntegrationTests { @Resource(name = "Example") private Region example;