Exemple #1
0
        public void CanAddArmorProficiency()
        {
            var def = new DefenseStats(
                new AbilityScores(),
                new SizeStats(),
                new Inventory()
                );

            def.AddArmorProficiency("Light");
            Assert.IsTrue(def.IsProficient(Leather()));
        }
Exemple #2
0
 public void CanAddArmorProficiency()
 {
     emptyStats.AddArmorProficiency("Light");
     Assert.True(emptyStats.IsProficient(Leather()));
 }