public void TestMethod1() { var gw = new GameWorld(100, 100); superDude d = new superDude(30, 30, "player"); gw.AddObject(d, new Point(0, 0)); Assert.AreEqual(new Point(0, 0), gw.Player.Location, "Location setted incorretly"); }
public void Initialize() { gw = new GameWorld(100, 100); superDude d = new superDude(30, 30, "player"); gw.AddObject(d, new Point(0, 0)); }