There is a workaround: create a main method and call the test-runner
directly, e.g.:

import junit.textui.*;

public static void main(String[] args) {
  TestRunner.run(suite());
}

public static Test suite() {
  // ...
  return suite;
}

Tom


On Tue, 9 Jul 2002 22:01:59 +0400, "Anton Katilin"
<[EMAIL PROTECTED]> wrote:

>Hello Doyle!
>
>Currently this is not possible.
>
>--
>Best regards,
>Anton Katilin
>---------------------------------------------------------
>JetBrains, Inc / IntelliJ Software
>http://www.intellij.com
>"Develop with pleasure!"
>
>
>"Doyle Davidson" <[EMAIL PROTECTED]> wrote in message
>ageq1h$dss$[EMAIL PROTECTED]">news:ageq1h$dss$[EMAIL PROTECTED]...
>> For our application, we require a custom JUnit "test runner" (it must do
>> some setup before running the unit test).  Is is possible to add my own
>test
>> runner to the default "text" and "ui" choices?
>>
>>
>
>

_______________________________________________
Eap-bugs mailing list
[EMAIL PROTECTED]
http://lists.jetbrains.com/mailman/listinfo/eap-bugs

Reply via email to