Beispiel #1
0
        public void WeaponCollection_GetHighestBaseAttack_HighestValue()
        {
            // Expected Value: 48
            // TODO: call WeaponCollection.GetHighestBaseAttack() and confirm that it matches the expected value using asserts.
            int highestBA = weaponCollection.GetHighestBaseAttack();

            Assert.AreEqual(highestBA, 48);
        }
Beispiel #2
0
 public void WeaponCollection_GetHighestBaseAttack_HighestValue()
 {
     // Expected Value: 48
     // TODO: call WeaponCollection.GetHighestBaseAttack() and confirm that it matches the expected value using asserts.
     Assert.IsTrue((WeaponCollection.GetHighestBaseAttack() == 48));
 }