public void SgfPointSerializationWorks()
        {
            var propertyValue = new SgfPointValue(new SgfPoint(3, 5));

            Assert.AreEqual("df", propertyValue.Serialize());
        }
 public void SgfPointParsingThrowsForNull()
 {
     SgfPointValue.Parse(null);
 }