jaideep umray - 2009-04-02

Hi,
Can anyone help me out as i am not getting any way to add a test class to a suite it was possible in junit by using "juni4adapter" class.
   what is the alternative here.

String str="Testclass"; //classname as string
                                Class testClass = Class.forName( str ); //getting class name from string str
                                suite.addTest(new JUnit4TestAdapter(testClass)); //add class to suite

what is the alternate of the above junit code in j2me unit.

Finally the question is
IS IT POSSIBLE TO ADD A TEST CLASS TO A SUITE THROUGH ITS NAME IN J2ME-UNIT????