public void ConvertStringToPathFigureCollectionTest()
        {
            PathFigureCollection result = _pathFigureCollectionConverter.ConvertFromInvariantString("M 10,100 C 100,0 200,200 300,100") as PathFigureCollection;

            Assert.IsNotNull(result);
            Assert.AreEqual(1, result.Count);
        }