Akka.Persistence.MongoDb.Tests.MongoDbSettingsSpec.Mongo_SnapshotStoreSettingsSettings_must_have_default_values C# (CSharp) Method

Mongo_SnapshotStoreSettingsSettings_must_have_default_values() private method

        public void Mongo_SnapshotStoreSettingsSettings_must_have_default_values()
        {
            var mongoPersistence = MongoDbPersistence.Get(Sys);

            mongoPersistence.SnapshotStoreSettings.ConnectionString.Should().Be(string.Empty);
            mongoPersistence.SnapshotStoreSettings.AutoInitialize.Should().BeFalse();
            mongoPersistence.SnapshotStoreSettings.Collection.Should().Be("SnapshotStore");
        }
    }