public void LabelClass_PointConstructorTest()
        {
            double newX = 0F; // TODO: Initialize to an appropriate value
            double newY = 0F; // TODO: Initialize to an appropriate value

            LabelClass_Accessor.Point target = new LabelClass_Accessor.Point(newX, newY);
            Assert.Inconclusive("TODO: Implement code to verify target");
        }
        public void DistTest()
        {
            PrivateObject param0 = null;                                              // TODO: Initialize to an appropriate value

            LabelClass_Accessor.Point target = new LabelClass_Accessor.Point(param0); // TODO: Initialize to an appropriate value
            LabelClass_Accessor.Point p      = null;                                  // TODO: Initialize to an appropriate value
            double expected = 0F;                                                     // TODO: Initialize to an appropriate value
            double actual;

            actual = target.Dist(p);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }