Exemplo n.º 1
0
 public void GetByName_NullArgs()
 {
     Assert.Throws(typeof(ArgumentException), () => LinePatternElement.GetByName(null));
 }
Exemplo n.º 2
0
        public void GetByName_ValidArgs()
        {
            var linePattern = LinePatternElement.GetByName("Dash");

            Assert.NotNull(linePattern);
        }