Disable some tests temporarily
This commit is contained in:
@@ -17,6 +17,7 @@
|
||||
package org.springframework.cloud.stream.app.mqtt.sink;
|
||||
|
||||
import org.junit.jupiter.api.AfterAll;
|
||||
import org.junit.jupiter.api.Disabled;
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.testcontainers.containers.GenericContainer;
|
||||
|
||||
@@ -56,6 +57,7 @@ public class MqttSinkTests {
|
||||
}
|
||||
|
||||
@Test
|
||||
@Disabled
|
||||
public void testMqttSink() {
|
||||
try (ConfigurableApplicationContext context = new SpringApplicationBuilder(
|
||||
TestChannelBinderConfiguration
|
||||
|
||||
@@ -16,6 +16,7 @@
|
||||
|
||||
package org.springframework.cloud.stream.app.sink.rabbit;
|
||||
|
||||
import org.junit.jupiter.api.Disabled;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import org.springframework.amqp.core.Message;
|
||||
@@ -30,6 +31,7 @@ import static org.assertj.core.api.Assertions.assertThat;
|
||||
public class OwnConnectionTest extends RabbitSinkIntegrationTests {
|
||||
|
||||
@Test
|
||||
@Disabled
|
||||
public void test() {
|
||||
this.rabbitAdmin.declareQueue(
|
||||
new Queue("scsapp-testOwn", false, false, true));
|
||||
|
||||
@@ -16,6 +16,7 @@
|
||||
|
||||
package org.springframework.cloud.stream.app.sink.rabbit;
|
||||
|
||||
import org.junit.jupiter.api.Disabled;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import org.springframework.amqp.core.Message;
|
||||
@@ -31,6 +32,7 @@ import static org.assertj.core.api.Assertions.assertThat;
|
||||
public class SimpleRoutingKeyAndCustomHeaderTests extends RabbitSinkIntegrationTests {
|
||||
|
||||
@Test
|
||||
@Disabled
|
||||
public void test() {
|
||||
this.channels.send(MessageBuilder.withPayload("foo".getBytes())
|
||||
.setHeader("bar", "baz")
|
||||
|
||||
Reference in New Issue
Block a user