public void WeaponCollection_GetAllWeaponsOfRarity_ListOfWeapons(int stars, int expectedValue) { // TODO: call WeaponCollection.GetAllWeaponsOfRarity(stars) and confirm that the weapons list returns Count matches the expected value using asserts. List <Weapon> weapon = weaponcollection.GetAllWeaponsOfRarity(stars); Assert.AreEqual(expectedValue, weapon.Count); }