public void DistanceUnitTest1() { Assert.Inconclusive("TODO"); ISpatialIndex target = CreateISpatialIndex(); // TODO: Initialize to an appropriate value AGraphElement graphElement1 = null; // TODO: Initialize to an appropriate value AGraphElement graphElement2 = null; // TODO: Initialize to an appropriate value float expected = 0F; // TODO: Initialize to an appropriate value float actual; actual = target.Distance(graphElement1, graphElement2); Assert.AreEqual(expected, actual); }
public void DistanceUnitTest() { Assert.Inconclusive("TODO"); ISpatialIndex target = CreateISpatialIndex(); // TODO: Initialize to an appropriate value IGeometry geometry1 = null; // TODO: Initialize to an appropriate value IGeometry geometry2 = null; // TODO: Initialize to an appropriate value float expected = 0F; // TODO: Initialize to an appropriate value float actual; actual = target.Distance(geometry1, geometry2); Assert.AreEqual(expected, actual); }