public void TestAppend()
        {
            SvgPathSegList list = getEmptyList();

            list.AppendItem(getLineto());
            Assert.AreEqual(1, list.NumberOfItems);
            Assert.AreEqual(SvgPathSegType.LineToAbs, list[0].PathSegType);
        }
        public void TestReadOnlyAppend()
        {
            SvgPathSegList list = new SvgPathSegList("", true);

            list.AppendItem(getLineto());
        }