예제 #1
0
        public void NegateTest()
        {
            double x = 0; // TODO: Initialize to an appropriate value

            double y = 0; // TODO: Initialize to an appropriate value

            double z = 0; // TODO: Initialize to an appropriate value

            Point3 target = new Point3(x, y, z);

            Point3 expected = new Point3();
            Point3 actual;

            actual = target.Negate();

            Assert.AreEqual(expected, actual, "Aurora.Vertex.Negate did not return the expected value.");
            Assert.Inconclusive("Verify the correctness of this test method.");
        }