Hi,
I have the selenium java client driver and have successfully written and executed a SeleneseTestCase. I want to create a JUnit Test Suite to test all my SeleneseTestCase classes. In JUnit i would do the following
public class TestAll extends TestCase {
public static Test suite() {
TestSuite suite = new TestSuite("My suite");
suite.addTest(new MyJunitTest());
return suite;
}
}
Ant then run the suite using the TestRunner or the junit ant task. When i try the same with a SeleneseTestCase class it simply does not run the test case. I could not find any SeleneseTestSuite class to use.
Any help is appreciated.
Thanks in advance