Beispiel #1
0
        public void KnowsWhetherTheSpellExistsInTheList()
        {
            var book = new Spellbook();

            book.AddSpells(0, new string[] { "light", "foo" });
            Assert.True(book.ContainsSpell(0, "light"));
        }