Anton,
> Does it implement static suite() method?
It doesn't help.
I have the same "problem" with the following code
:
public class AllTests extends TestSuite{// --------------------------------------------------- suite ()
public static TestSuite suite ()
// ------------------------------------------------------------
{
final TestSuite suite = new TestSuite();
suite.addTestSuite ( Test1.class) ;
suite.addTestSuite ( Test2.class) ;return suite ;
}}
I won't work without a main() method in the
class.
Alain Ravet
----- Original Message -----
From: "Anton Katilin" <[EMAIL PROTECTED]>
>
> Does it implement static suite() method?
>
> Best regards,
> Anton Katilin
>
> ----- Original Message -----
> From: "Donald F. McLean" <[EMAIL PROTECTED]>
>
> > I have a TestSuite object and when I have it up in the editor the "test"
> > command doesn't show up on the menu as it does for TestCase objects.
> >
> > Donald
