Exemplo n.º 1
0
        public void Test_XYZTests_Explode()
        {
            // Test exploding of args into variables
            XYZ xyz = new XYZ(1, 2, 3);

            double X, Y, Z;

            xyz.Explode(out X, out Y, out Z);

            Assert.True(X == 1 && Y == 2 && Z == 3, "Explode did not return X, Y & Z correctly");
        }