public void CanAddArmorProficiencies() { var def = new DefenseStats( new AbilityScores(), new SizeStats(), new Inventory()); def.AddArmorProficiencies(new string[] { "Light", "Heavy" }); Assert.IsTrue(def.IsProficient(Leather())); }
public void CanAddArmorProficiency() { emptyStats.AddArmorProficiency("Light"); Assert.True(emptyStats.IsProficient(Leather())); }