Ejemplo n.º 1
0
        public void DoNotSelectTheSameSpellTwice()
        {
            var bard     = CharacterTestTemplates.BardyBard().WithSpontaneousCasting(6);
            var selector = new SelectNewKnownSpells();

            selector.ExecuteStep(bard);
            bard.SetLevel(2);
            selector.ExecuteStep(bard);
            bard.SetLevel(3);
            selector.ExecuteStep(bard);
            var spellCasting = bard.Get <SpontaneousCasting>();

            Assert.NotEmpty(spellCasting.GetReadySpells(0));
            Assert.NotEmpty(spellCasting.GetReadySpells(1));
            AssertExtensions.ListIsUnique(spellCasting.GetReadySpells(0));
            AssertExtensions.ListIsUnique(spellCasting.GetReadySpells(1));
        }
Ejemplo n.º 2
0
        public void SelectsSpellsForEachLevelUntilAllAvailableSlotsAreFilled()
        {
            var bard     = CharacterTestTemplates.BardyBard().WithSpontaneousCasting();
            var selector = new SelectNewKnownSpells();

            selector.ExecuteStep(bard);
            var spellCasting = bard.Get <SpontaneousCasting>();

            Assert.Equal(spellCasting.GetKnownSpellCount(0), spellCasting.GetReadySpells(0).Count());
            Assert.Equal(spellCasting.GetKnownSpellCount(1), spellCasting.GetReadySpells(1).Count());
            Assert.Equal(spellCasting.GetKnownSpellCount(2), spellCasting.GetReadySpells(2).Count());

            bard.SetLevel(3);
            selector.ExecuteStep(bard);
            Assert.Equal(spellCasting.GetKnownSpellCount(0), spellCasting.GetReadySpells(0).Count());
            Assert.Equal(spellCasting.GetKnownSpellCount(1), spellCasting.GetReadySpells(1).Count());
            Assert.Equal(spellCasting.GetKnownSpellCount(2), spellCasting.GetReadySpells(2).Count());
        }