TestProject1.Vector2Test.YTest C# (CSharp) Method

YTest() private method

private YTest ( ) : void
return void
        public void YTest()
        {
            Vector2 target = new Vector2(); // TODO: Initialize to an appropriate value
            float expected = 0F; // TODO: Initialize to an appropriate value
            float actual;
            target.Y = expected;
            actual = target.Y;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }