Example #1
0
        public void GetHashCodeShouldReturnHashCodeOfAllVersions()
        {
            var table = new SettingsTable <string, string>();

            table.AddVersion(new SettingsTableVersion <string, string>());

            int versionsHashCode = table.Versions.GetHashCode();

            Assert.Equal(versionsHashCode, table.GetHashCode());
        }