TestProject1.TileTest.EqualsTest C# (CSharp) Method

EqualsTest() private method

private EqualsTest ( ) : void
return void
        public void EqualsTest()
        {
            Tile target = new Tile(); // TODO: Initialize to an appropriate value
            object obj = null; // TODO: Initialize to an appropriate value
            bool expected = false; // TODO: Initialize to an appropriate value
            bool actual;
            actual = target.Equals(obj);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }