public void SetValueWithKeyNotExistsTest()
        {
            var dictionary = new Dictionary <int, int>();

            Dicts.SetValue(dictionary, 1, 100);

            dictionary.Count.ShouldBe(1);
            dictionary[1].ShouldBe(100);
        }