Esempio n. 1
0
        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);
        }
Esempio n. 2
0
 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);
 }