* Generates the JUnit test user wants to download.
* @param isPrintStubs will print incomplete test cases if true
*/
public String generateJUnitTest(boolean isPrintStubs)
{
JUnitTestCreator testCreator = new JUnitTestCreator(this, getMethods(), isPrintStubs);
return testCreator.getTest();
}