Code review cleanup

This commit is contained in:
Michael Minella
2016-04-25 23:04:16 -05:00
parent 43d869f726
commit bf52aee188
21 changed files with 224 additions and 334 deletions

View File

@@ -34,12 +34,6 @@
<artifactId>spring-cloud-task-stream</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-stream-binder-test</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-batch</artifactId>

View File

@@ -16,7 +16,8 @@
package io.spring.cloud;
import java.util.concurrent.*;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.TimeUnit;
import org.junit.Assert;
import org.junit.ClassRule;
@@ -33,13 +34,8 @@ import org.springframework.cloud.stream.test.junit.redis.RedisTestSupport;
import org.springframework.cloud.task.batch.listener.support.JobExecutionEvent;
import org.springframework.context.annotation.PropertySource;
import static junit.framework.Assert.assertEquals;
import static junit.framework.Assert.assertTrue;
public class BatchEventsApplicationTests {
private static final String ITEM_INDICATOR = ">> -";
@ClassRule
public static RedisTestSupport redisTestSupport = new RedisTestSupport();