In VS2012, Visual Basic.NET, with regards to Unit Testing, do I only test once in a Unit Test?
For example, if I have a Unit Test that tests if an item is successfully added to a list, in the Unit Test, do I only test by adding one item to a list, and then checking with an Assert statement, or should I add a x amount of items to the list and then check to see if all the items are in a list?
For example, if I have a Unit Test that tests if an item is successfully added to a list, in the Unit Test, do I only test by adding one item to a list, and then checking with an Assert statement, or should I add a x amount of items to the list and then check to see if all the items are in a list?