Add cds-access-client unit tests
[controller.git] / opendaylight / md-sal / cds-access-client / src / test / resources / application.conf
diff --git a/opendaylight/md-sal/cds-access-client/src/test/resources/application.conf b/opendaylight/md-sal/cds-access-client/src/test/resources/application.conf
new file mode 100644 (file)
index 0000000..b651f6a
--- /dev/null
@@ -0,0 +1,17 @@
+akka {
+  persistence.snapshot-store.plugin = "in-memory-snapshot-store"
+  persistence.journal.plugin = "in-memory-journal"
+
+  loggers = ["akka.testkit.TestEventListener", "akka.event.slf4j.Slf4jLogger"]
+}
+
+in-memory-journal {
+  class = "akka.persistence.journal.inmem.InmemJournal"
+}
+
+in-memory-snapshot-store {
+  # Class name of the plugin.
+  class = "org.opendaylight.controller.cluster.access.client.MockedSnapshotStore"
+  # Dispatcher for the plugin actor.
+  plugin-dispatcher = "akka.persistence.dispatchers.default-plugin-dispatcher"
+}
\ No newline at end of file