I am relatively new to Java and new to JUnit testing. It\'s absolutely clear to me what the Test class uis, but the TestSuite class confuses me. Ca
Test
TestSuite
It is basically a group of tests that you (or someone) define once which you can run with the click of a button. The tests are automatically run and "marked", and if any test fails you are informed of details.