Ejemplo n.º 1
0
 public virtual void testPt()
 {
     com.esri.core.geometry.Point pt = new com.esri.core.geometry.Point();
     NUnit.Framework.Assert.IsTrue(pt.isEmpty());
     pt.setXY(10, 2);
     NUnit.Framework.Assert.IsFalse(pt.isEmpty());
     pt.ToString();
 }
		public virtual void TestPt()
		{
			com.esri.core.geometry.Point pt = new com.esri.core.geometry.Point();
			NUnit.Framework.Assert.IsTrue(pt.IsEmpty());
			pt.SetXY(10, 2);
			NUnit.Framework.Assert.IsFalse(pt.IsEmpty());
			pt.ToString();
		}