feat: first runnable implementation, that is based on Kafka
[demos/kafka/chat] / src / test / java / de / juplo / kafka / chat / backend / persistence / AbstractStorageStrategyIT.java
index 3ce527e..58acb19 100644 (file)
@@ -23,7 +23,7 @@ public abstract class AbstractStorageStrategyIT
   protected void start()
   {
     StorageStrategyITConfig config = getConfig();
-    chathome = new SimpleChatHome(config.getChatHomeService());
+    chathome = config.getChatHome();
     chatRoomFactory = config.getChatRoomFactory();
   }
 
@@ -116,7 +116,7 @@ public abstract class AbstractStorageStrategyIT
 
   interface StorageStrategyITConfig
   {
-    ChatHomeService getChatHomeService();
+    ChatHome getChatHome();
     ChatRoomFactory getChatRoomFactory();
   }
 }