public void WeaponCollection_GetLowestBaseAttack_LowestValue() { // Expected Value: 23 // TODO: call WeaponCollection.GetLowestBaseAttack() and confirm that it matches the expected value using asserts. int lowestBA = weaponCollection.GetLowestBaseAttack(); Assert.AreEqual(lowestBA, 23); }
public void WeaponCollection_GetLowestBaseAttack_LowestValue() { // Expected Value: 23 // TODO: call WeaponCollection.GetLowestBaseAttack() and confirm that it matches the expected value using asserts. Assert.IsTrue(weaponcollection.GetLowestBaseAttack() == 23); }