Example #1
0
        public void When_IsDictionary()
        {
            Type source   = typeof(SortedDictionary <string, string>);
            bool expected = true;
            bool actual;

            actual = CollectionExtensions.IsDictionary(source);

            Assert.AreEqual(expected, actual);
        }