public void TestCanAdd() { ValueParseMap map = new ValueParseMap(); Assert.True(map.CanAdd(typeof(string))); map.AddParser(Exemplars.DummyValueParser <string>()); Assert.False(map.CanAdd(typeof(string))); }
public void TestCanAdd__Null() { ValueParseMap map = new ValueParseMap(); map.AddParser(Exemplars.DummyValueParser <string>()); Assert.Throws <ArgumentNullException>(() => map.CanAdd(null)); }