Updated tests to remove deprecated code from tests

* cleanup removing unused headers
* Updated asserts in code base that needed messages (marked as deprecated)
* left one test that was testing a deprecated constructor.  When that code is removed we can remove that test.
* some other cleanup

resolves #338
This commit is contained in:
Glenn Renfro
2018-01-05 09:30:26 -05:00
committed by Michael Minella
parent c4324b550d
commit 3ad9efe3fe
25 changed files with 36 additions and 46 deletions

View File

@@ -28,7 +28,6 @@ import org.springframework.boot.autoconfigure.condition.ConditionalOnBean;
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.cloud.stream.annotation.EnableBinding;
import org.springframework.cloud.stream.annotation.Output;
@@ -38,7 +37,6 @@ import org.springframework.cloud.task.listener.TaskLifecycleListener;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Lazy;
import org.springframework.integration.gateway.GatewayProxyFactoryBean;
import org.springframework.messaging.MessageChannel;
/**

View File

@@ -33,7 +33,7 @@ public class ExitStatus {
}
public ExitStatus(org.springframework.batch.core.ExitStatus exitStatus) {
Assert.notNull(exitStatus);
Assert.notNull(exitStatus, "exitStatus must not be null.");
this.exitCode = exitStatus.getExitCode();
this.exitDescription = exitStatus.getExitDescription();

View File

@@ -16,8 +16,6 @@
package org.springframework.cloud.task.batch.listener.support;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;

View File

@@ -36,7 +36,7 @@ public class JobInstanceEvent extends Entity {
public JobInstanceEvent(Long id, String jobName) {
super(id);
Assert.hasLength(jobName);
Assert.hasLength(jobName, "jobName must have length greater than zero.");
this.jobName = jobName;
}

View File

@@ -16,9 +16,6 @@
package org.springframework.cloud.task.batch.listener.support;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.concurrent.CopyOnWriteArrayList;