TestProject1.TileTest.TileConstructorTest C# (CSharp) Method

TileConstructorTest() private method

private TileConstructorTest ( ) : void
return void
        public void TileConstructorTest()
        {
            int id = 0; // TODO: Initialize to an appropriate value
            Vector2 position = null; // TODO: Initialize to an appropriate value
            Vector2 size = null; // TODO: Initialize to an appropriate value
            Panel panel = null; // TODO: Initialize to an appropriate value
            TileType tileType = new TileType(); // TODO: Initialize to an appropriate value
            Tile target = new Tile(id, position, size, panel, tileType);
            Assert.Inconclusive("TODO: Implement code to verify target");
        }