From: "E.L. Willighagen (Egon)" <[EMAIL PROTECTED]> Subject: Re: junit-freenet, was Re: Bug#165504 acknowledged by developer Date: Fri, 18 Jul 2003 20:26:05 +0200 > > from compiling with free jvm, so junit is gone to contrib. I can write > > swing ui wrapper which provide junit.swingui.TestRunner class but use > > awt instead of swing. How about this idea? The wrapper class may > > provide poor gui than original swing ui but we can put junit into > > main. > > What about making a patch that just removes all the Swing dependent > stuff? Or, split the package up in a non-swing and a swing part...
This is all tough it may not so nice... [junit/swingui/TestRunner.java] package junit.swingui; public class TestRunner extends BaseTestRunner implements TestRunContext { public static void main(String[] args) { new junit.awtui.TestRunner().start(args) ; } } Takashi Okamoto