[TestCategoryAttribute("Geometry"), TestMethod] //TestCategoryAttribute("RuleManager"),
        public void TestGeometryType()
        {
            var    np = new TPoint(0, 0);
            string tp = np.GetType().ToString();

            var nl = new TLineString(new List <MyPoint>()
            {
                new MyPoint(11.111, 22.222),
                new MyPoint(33.333, 44.444),
                new MyPoint(55.555, 66.666)
            });

            string tl = nl.GetType().ToString();

            Assert.IsTrue(true, "good");
        }