Пример #1
0
        public void TestCanAdd()
        {
            ValueParseMap map = new ValueParseMap();

            Assert.True(map.CanAdd(typeof(string)));

            map.AddParser(Exemplars.DummyValueParser <string>());

            Assert.False(map.CanAdd(typeof(string)));
        }
Пример #2
0
        public void TestCanAdd__Null()
        {
            ValueParseMap map = new ValueParseMap();

            map.AddParser(Exemplars.DummyValueParser <string>());

            Assert.Throws <ArgumentNullException>(() => map.CanAdd(null));
        }