Add cds-access-client unit tests
[controller.git] / opendaylight / md-sal / cds-access-client / src / test / resources / application.conf
1 akka {
2   persistence.snapshot-store.plugin = "in-memory-snapshot-store"
3   persistence.journal.plugin = "in-memory-journal"
4
5   loggers = ["akka.testkit.TestEventListener", "akka.event.slf4j.Slf4jLogger"]
6 }
7
8 in-memory-journal {
9   class = "akka.persistence.journal.inmem.InmemJournal"
10 }
11
12 in-memory-snapshot-store {
13   # Class name of the plugin.
14   class = "org.opendaylight.controller.cluster.access.client.MockedSnapshotStore"
15   # Dispatcher for the plugin actor.
16   plugin-dispatcher = "akka.persistence.dispatchers.default-plugin-dispatcher"
17 }