Ignore tests where we have empty tests

These tests properly neeed to use EmbeddedKafka or some other testing strategy
This commit is contained in:
Soby Chacko
2019-11-08 15:54:23 -05:00
parent 3f3337d09f
commit 38a9d47dac
4 changed files with 10 additions and 0 deletions

View File

@@ -16,6 +16,7 @@
package multibinder.kafka.jaas;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
@@ -23,6 +24,7 @@ import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest
@Ignore("until we have proper test")
public class MultiBinderKafkaJaasSampleTests {
@Test

View File

@@ -16,6 +16,7 @@
package demo;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;
@@ -28,6 +29,7 @@ import org.springframework.test.context.web.WebAppConfiguration;
@SpringBootTest(classes = PartitioningKafkaDemoApplication.class)
@WebAppConfiguration
@DirtiesContext
@Ignore("until we have proper test")
public class ModuleApplicationTests {
@Test

View File

@@ -16,6 +16,7 @@
package demo.producer;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
@@ -23,6 +24,7 @@ import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.NONE)
@Ignore("until we have proper test")
public class ModuleApplicationTests {
@Test

View File

@@ -16,9 +16,12 @@
package demo;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.autoconfigure.kafka.KafkaAutoConfiguration;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.annotation.DirtiesContext;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
@@ -26,6 +29,7 @@ import org.springframework.test.context.web.WebAppConfiguration;
@RunWith(SpringJUnit4ClassRunner.class)
@SpringBootTest(classes = DynamicDestinationSourceApplication.class)
@Ignore("until we have proper test")
@WebAppConfiguration
@DirtiesContext
public class ModuleApplicationTests {