Hi All,
Can you please provide me the example that how testsuite is created from JXTestCase class.
I have created a class which extends JXTestCase

      public class DummyTestStep1  extends JXTestCase {
    public DummyTestStep1(String arg0, JXProperties arg1) {
       
        super(arg0, arg1);
        // TODO Auto-generated constructor stub
    }

    public void testeval1(JXTestCase testCase)
    throws Throwable
        {
        JXProperties properties=testCase.getProperties();
        String res =properties.get("input").toString();
            properties.put("output1",res);
        }
   }

When i tried to add this class into TestSuite its giving me an error .

Can you please help me with example...

Thanks,
Shubhangi