Added a simple implementation of the polling outbox pattern
[demos/kafka/outbox] / outbox / src / test / java / de / juplo / kafka / outbox / ApplicationTests.java
diff --git a/outbox/src/test/java/de/juplo/kafka/outbox/ApplicationTests.java b/outbox/src/test/java/de/juplo/kafka/outbox/ApplicationTests.java
new file mode 100644 (file)
index 0000000..cb5bc43
--- /dev/null
@@ -0,0 +1,16 @@
+package de.juplo.kafka.outbox;
+
+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()
+  {
+  }
+}