public void Decrease_With2_DecreasesScoreWith2() { // Assign var attr = new Ability(AbilityType.Strength, 10); // Act attr.Decrease(2); // Assert Assert.Equal(8, attr.Score); }