When testing in VS2012 Visual Basic.NET, I have added a Test Project to the solution. I see that you can add more than one Unit Test to a Testing Project, and that each unit test added can have many methods.
In what situation do I add a new unit test to the project that has its own methods rather than including them all in one unit test?
The application that I have created is a Media Player application, that has the main functions:
A Media List GUI/Code
A Playlist GUI/Code
A Schedule GUI/Code
In this above situation, should I have three unit tests that relate to each main function?
In what situation do I add a new unit test to the project that has its own methods rather than including them all in one unit test?
The application that I have created is a Media Player application, that has the main functions:
A Media List GUI/Code
A Playlist GUI/Code
A Schedule GUI/Code
In this above situation, should I have three unit tests that relate to each main function?