public void TestDefaultAttributeBehavior() { Attribute attribute = new Attribute(2); Assert.AreEqual(2, attribute.Value); }
public void TestNegativeDecrepitudeLoss() { Attribute attribute = new Attribute(-2); attribute.AddDecrepitude((byte)(3)); Assert.AreEqual(-3, attribute.Value); }
public void TestDecrepitudeLoss() { Attribute attribute = new Attribute(2); attribute.AddDecrepitude((byte)(3)); Assert.AreEqual(1, attribute.Value); }