示例#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);
        }
示例#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);
 }