blob: ad26d9ea01e8685ae0d5d08dc01f1dfca3455f23 [file] [log] [blame]
package test.sample;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
* Tests the suite() functionality of TestNG
*
* @author Cedric Beust, May 5, 2004
*
*/
public class AllJUnitTests {
public Test suite() {
TestSuite suite= new TestSuite();
suite.addTest(new JUnitSample1("JUnitSample1"));
suite.addTest(new JUnitSample2("JUnitSample2"));
return suite;
}
}