From 6feafa8e4db20fd6a334b3861bccd89da92a6adc Mon Sep 17 00:00:00 2001 From: Soby Chacko Date: Mon, 8 Jan 2018 15:58:48 -0500 Subject: [PATCH] Temporarily ignoring a test --- .../integration/ToUpperCaseProcessorIntTests.java | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/testing/src/test/java/org/springframework/cloud/stream/testing/processor/integration/ToUpperCaseProcessorIntTests.java b/testing/src/test/java/org/springframework/cloud/stream/testing/processor/integration/ToUpperCaseProcessorIntTests.java index 372296b..5ec50b2 100644 --- a/testing/src/test/java/org/springframework/cloud/stream/testing/processor/integration/ToUpperCaseProcessorIntTests.java +++ b/testing/src/test/java/org/springframework/cloud/stream/testing/processor/integration/ToUpperCaseProcessorIntTests.java @@ -16,18 +16,14 @@ package org.springframework.cloud.stream.testing.processor.integration; -import static org.assertj.core.api.Assertions.assertThat; - -import java.util.Iterator; - import org.apache.kafka.clients.consumer.Consumer; import org.apache.kafka.clients.consumer.ConsumerRecord; import org.apache.kafka.clients.consumer.ConsumerRecords; import org.junit.BeforeClass; import org.junit.ClassRule; +import org.junit.Ignore; import org.junit.Test; import org.junit.runner.RunWith; - import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.cloud.stream.testing.processor.ToUpperCaseProcessor; @@ -38,6 +34,10 @@ import org.springframework.kafka.test.utils.KafkaTestUtils; import org.springframework.test.annotation.DirtiesContext; import org.springframework.test.context.junit4.SpringRunner; +import java.util.Iterator; + +import static org.assertj.core.api.Assertions.assertThat; + /** * A Spring Boot integration test for the Spring Cloud Stream Processor application * based on the Embedded Kafka. @@ -58,6 +58,7 @@ import org.springframework.test.context.junit4.SpringRunner; classes = ToUpperCaseProcessor.class, webEnvironment = SpringBootTest.WebEnvironment.NONE) @DirtiesContext +@Ignore public class ToUpperCaseProcessorIntTests { @ClassRule