Edit Javadoc; Optimize imports.

This commit is contained in:
John Blum
2019-09-09 11:35:56 -07:00
parent 22925f136f
commit 202e59b9d2
3 changed files with 12 additions and 6 deletions

View File

@@ -21,12 +21,12 @@ import java.util.concurrent.atomic.AtomicBoolean;
import javax.annotation.Resource;
import org.apache.geode.cache.Region;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.apache.geode.cache.Region;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.data.gemfire.tests.integration.IntegrationTestsSupport;
@@ -41,11 +41,13 @@ import example.app.caching.inline.service.CalculatorService;
* Integration Tests for Calculator Application.
*
* @author John Blum
* @see java.util.concurrent.atomic.AtomicBoolean
* @see org.junit.Test
* @see org.apache.geode.cache.Region
* @see org.springframework.boot.test.context.SpringBootTest
* @see org.springframework.data.gemfire.tests.integration.IntegrationTestsSupport
* @see org.springframework.test.context.junit4.SpringRunner
* @see example.app.caching.inline.model.Operator
* @see example.app.caching.inline.model.ResultHolder
* @see example.app.caching.inline.repo.CalculatorRepository
* @see example.app.caching.inline.service.CalculatorService
@@ -54,6 +56,7 @@ import example.app.caching.inline.service.CalculatorService;
// tag::class[]
@RunWith(SpringRunner.class)
@SpringBootTest
@SuppressWarnings("unused")
public class CalculatorApplicationIntegrationTests extends IntegrationTestsSupport {
private static final AtomicBoolean runOnce = new AtomicBoolean(false);