示例#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()));
        }
示例#2
0
 public void CanAddArmorProficiencies()
 {
     emptyStats.AddArmorProficiencies(new string[] { "Light", "Heavy" });
     Assert.True(emptyStats.IsProficient(Leather()));
 }