Exemplo n.º 1
0
 public void TestThatCharacterIsDead()
 {
     var target = new Character("Bob", null, 10, 10, 10, new Item(), "Warrior");
     target.SetDead();
     Assert.AreEqual(target.GetDead(), true);
 }