Moved postage of messages into a reusable standalone implementation
[demos/kafka/outbox] / delivery / src / test / java / de / juplo / kafka / outbox / delivery / ApplicationTests.java
diff --git a/delivery/src/test/java/de/juplo/kafka/outbox/delivery/ApplicationTests.java b/delivery/src/test/java/de/juplo/kafka/outbox/delivery/ApplicationTests.java
new file mode 100644 (file)
index 0000000..b8f1834
--- /dev/null
@@ -0,0 +1,16 @@
+package de.juplo.kafka.outbox.delivery;
+
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.test.context.junit4.SpringRunner;
+
+@RunWith(SpringRunner.class)
+@SpringBootTest
+public class ApplicationTests
+{
+  @Test
+  public void contextLoads()
+  {
+  }
+}