I have to submit my project along with test suits. I would appreciate someone explaining best with example what is it, is there some other tools that build the test or is it a scenario written by myself? I have never written it before so please any info will be of a great help.
Share
Test suite is nothing else but group of UnitTest.
Suppose You have a couple of test: UserDAOTest, BooksDAOTest, BorrowsDAOTest, etc…
Alternatively You can do above with annotations style too. Then just run your test suite(s) same way you run jUnit tests.
Additional info [1]
[1] http://www.junit.org/apidocs/junit/framework/TestSuite.html