Akka.Persistence.Tests.PersistenceConfigSpec.Persistence_should_use_local_snapshot_store_by_default C# (CSharp) Method

Persistence_should_use_local_snapshot_store_by_default() private method

        public void Persistence_should_use_local_snapshot_store_by_default()
        {
            var persistence = Persistence.Instance.Apply(Sys);
            var journal = persistence.SnapshotStoreFor(string.Empty); // get the default snapshot store
            journal.Path.Name.ShouldBe("akka.persistence.snapshot-store.local");
        }
    }