Ejemplo n.º 1
0
        public void CanAddArmorProficiencies()
        {
            var def = new DefenseStats(
                new AbilityScores(),
                new SizeStats(),
                new Inventory());

            def.AddArmorProficiencies(new string[] { "Light", "Heavy" });
            Assert.IsTrue(def.IsProficient(Leather()));
        }
Ejemplo n.º 2
0
 public void CanAddArmorProficiency()
 {
     emptyStats.AddArmorProficiency("Light");
     Assert.True(emptyStats.IsProficient(Leather()));
 }