public void ParseIntMap_100Elements_WorksCorrectly()
        {
            var map = new DescriptionsProvider <double>();

            map.Parse(CreateIntMap(100));

            Assert.IsTrue(map.Descriptions.Count == 100);
        }
        public void ParseStringMap_0Elements_WorksCorrectly()
        {
            var map = new DescriptionsProvider <string>();

            map.Parse(CreateIntMap(0));

            Assert.IsTrue(map.Descriptions.Count == 0);
        }
        public void ParseDoubleMap_3Elements_WorksCorrectly()
        {
            var map = new DescriptionsProvider <double>();

            map.Parse(CreateDoubleMap(3));

            Assert.IsTrue(map.Descriptions.Count == 3);
        }