From 1a5d4d079a93b2cdec414d54d454065b08930529 Mon Sep 17 00:00:00 2001 From: John Blum Date: Thu, 12 Sep 2019 17:03:45 -0700 Subject: [PATCH] Edit Javadoc; Optimize imports; Fix failing tests in CI environment. --- ...dSessionRemoteCachingIntegrationTests.java | 32 ++++++++++++++++--- 1 file changed, 27 insertions(+), 5 deletions(-) diff --git a/spring-geode-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/session/AutoConfiguredSessionRemoteCachingIntegrationTests.java b/spring-geode-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/session/AutoConfiguredSessionRemoteCachingIntegrationTests.java index cea14f7f..50046a69 100644 --- a/spring-geode-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/session/AutoConfiguredSessionRemoteCachingIntegrationTests.java +++ b/spring-geode-autoconfigure/src/test/java/org/springframework/geode/boot/autoconfigure/session/AutoConfiguredSessionRemoteCachingIntegrationTests.java @@ -24,15 +24,15 @@ import java.util.concurrent.atomic.AtomicReference; import javax.annotation.Resource; import javax.servlet.http.HttpSession; +import org.apache.geode.cache.DataPolicy; +import org.apache.geode.cache.Region; +import org.apache.geode.cache.client.ClientCache; + import org.junit.Before; import org.junit.BeforeClass; import org.junit.Test; import org.junit.runner.RunWith; -import org.apache.geode.cache.DataPolicy; -import org.apache.geode.cache.Region; -import org.apache.geode.cache.client.ClientCache; - import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.WebApplicationType; import org.springframework.boot.autoconfigure.SpringBootApplication; @@ -59,9 +59,31 @@ import org.springframework.web.bind.annotation.RestController; import org.springframework.web.client.RestTemplate; /** - * The AutoConfiguredSessionRemoteCachingIntegrationTests class... + * Integration Tests for Spring Session, Remote Caching (e.g. client/server). * * @author John Blum + * @see java.net.URI + * @see org.junit.Test + * @see org.apache.geode.cache.Region + * @see org.apache.geode.cache.client.ClientCache + * @see org.springframework.boot.autoconfigure.SpringBootApplication + * @see org.springframework.boot.builder.SpringApplicationBuilder + * @see org.springframework.boot.test.context.SpringBootTest + * @see org.springframework.context.annotation.Bean + * @see org.springframework.data.gemfire.config.annotation.CacheServerApplication + * @see org.springframework.data.gemfire.config.annotation.EnableLogging + * @see org.springframework.data.gemfire.tests.integration.ForkingClientServerIntegrationTestsSupport + * @see org.springframework.geode.boot.autoconfigure.SpringSessionAutoConfiguration + * @see org.springframework.session.data.gemfire.config.annotation.web.http.EnableGemFireHttpSession + * @see org.springframework.session.data.gemfire.config.annotation.web.http.GemFireHttpSessionConfiguration + * @see org.springframework.session.web.http.HttpSessionIdResolver + * @see org.springframework.test.context.ActiveProfiles + * @see org.springframework.test.context.junit4.SpringRunner + * @see org.springframework.web.bind.annotation.GetMapping + * @see org.springframework.web.bind.annotation.RequestMapping + * @see org.springframework.web.bind.annotation.RequestParam + * @see org.springframework.web.bind.annotation.RestController + * @see org.springframework.web.client.RestTemplate * @since 1.0.0 */ @RunWith(SpringRunner.class)