I have a code base where they define junit test cases as :
public class MyTest extends BaseTestCase
{
public MyTest( String name )
{
super( name );
}
public void testSome() throws Exception
{
assertTrue (1 == 1);
}
}
How to do I run this test from eclipse? How do I supply the name in the constructor?