Exemplo n.º 1
0
        public void SgfPointSerializationWorks()
        {
            var propertyValue = new SgfPointValue(new SgfPoint(3, 5));

            Assert.AreEqual("df", propertyValue.Serialize());
        }
Exemplo n.º 2
0
 public void SgfPointParsingThrowsForNull()
 {
     SgfPointValue.Parse(null);
 }