Exemplo n.º 1
0
 public void TestPointMShapePosition()
 {
     PointMShape point = new PointMShape(2, m_metadata, m_position, 5.0);
     Assert.AreEqual(new Cartographic(Constants.RadiansPerDegree, 2.0 * Constants.RadiansPerDegree, 0.0), point.Position);
 }
Exemplo n.º 2
0
 public void TestPointMShapeMeasure()
 {
     PointMShape point = new PointMShape(2, m_metadata, m_position, 5.0);
     Assert.AreEqual(5.0, point.Measure);
 }
Exemplo n.º 3
0
 public void TestPointMShapeType()
 {
     PointMShape point = new PointMShape(2, m_metadata, m_position, 5.0);
     Assert.AreEqual(ShapeType.PointM, point.ShapeType);
 }