Exemplo n.º 1
0
        public void TestWizzardVsOrk()
        {
            // Wizzard can control Orks so they are not able to damage them. => wizzard always win
            Card wizzard = new Wizzard();
            Card ork     = new Ork();

            Assert.IsTrue(wizzard.Attack(ork));
            Assert.IsFalse(ork.Attack(wizzard));
        }