instead of doing
Assert.AreEqual(3, myList.Count) // Do stuff that shouldn't change count Assert.AreEqual(3, myList.Count)
do this:
int count = myList.Count // Do stuff that shouldn't change count Assert.AreEqual(count, myList.Count)
instead of doing
Assert.AreEqual(3, myList.Count) // Do stuff that shouldn't change count Assert.AreEqual(3, myList.Count)
do this:
int count = myList.Count // Do stuff that shouldn't change count Assert.AreEqual(count, myList.Count)
0 kommentarer:
Post a Comment