Removed the deprecations from the Task Samples unit tests

With the latest release of boot some of the test classes were deprecated.  This change removes the deprecation warnings from samples.
This commit is contained in:
Glenn Renfro
2016-08-18 16:59:57 -04:00
parent 4ab6a93f6a
commit 6afc5cc260
5 changed files with 12 additions and 7 deletions

View File

@@ -24,12 +24,14 @@ import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.SpringApplicationConfiguration;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.cloud.stream.annotation.Bindings;
import org.springframework.cloud.stream.messaging.Processor;
import org.springframework.cloud.stream.test.binder.MessageCollector;
import org.springframework.cloud.task.launcher.TaskLaunchRequest;
import org.springframework.messaging.support.GenericMessage;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import org.springframework.test.context.junit4.SpringRunner;
import static org.hamcrest.CoreMatchers.is;
import static org.junit.Assert.assertThat;
@@ -38,8 +40,8 @@ import static org.springframework.cloud.stream.test.matcher.MessageQueueMatcher.
/**
* @author Glenn Renfro
*/
@RunWith(SpringJUnit4ClassRunner.class)
@SpringApplicationConfiguration(classes = TaskProcessorApplication.class)
@RunWith(SpringRunner.class)
@SpringBootTest(classes = TaskProcessorApplication.class)
public class TaskProcessorApplicationTests {
private static final String DEFAULT_PAYLOAD = "hello";