TestProject1.Vector2Test.CopyTest C# (CSharp) Method

CopyTest() private method

private CopyTest ( ) : void
return void
        public void CopyTest()
        {
            Vector2 vector = null; // TODO: Initialize to an appropriate value
            Vector2 expected = null; // TODO: Initialize to an appropriate value
            Vector2 actual;
            actual = Vector2.Copy(vector);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }