Exemplo n.º 1
0
        public void test_GetBoundary()
        {
            //create a new multipoint
            MultiPoint mp = CreateTester1();

            //get the boundary of the multipoint
            Geometry geoColl = mp.GetBoundary();

            //should return true always - a multipoint has no boundary
            Assertion.AssertEquals("GetBoundary: ", true, geoColl.IsEmpty());
        }