I would also like idea to run a specified test and not the whole 
testcase. I often make the following code in a testcase
to stop all but one test from running:


  public static Test suite() {
    TestSuite suite = new TestSuite();
    suite.addTest(new MyTest("testTheMethodToTest"));
    return suite;
  }

This is definitely something that could be automated by idea. Like "Test 
Method" gives a list of methods in
the current TestCase and you then choose the one you want run (Mayby 
with multiselect to make it event fancier)

Alain Ravet wrote:

> Request:
> ********
> - improve textui.TestRunner by changing the panel
>   background color depending on the success/failure.
>
> No error/failure => panel = light green
> error or failure => panel = light red
>
>
> I like/miss the Green bar effect, but I NEVER EVER use swingui.TestRunner
> because
>  - it takes multiple key presses between successive runs
>     . change app (go back to IDEA)
>     . reload class, or
>     . close window
>  - it takes much longer to start
>  - the error line don't hyperlink to the editor panel.
>
>
> On the other hand, the textui.TestRunner
> forces you to read the result text, to find out if it succeeded or 
> failed.
> Hence my request.
> A small change, for a big win.
>
> Alain Ravet
>
>
> _______________________________________________
> Eap-features mailing list
> [EMAIL PROTECTED]
> http://www.intellij.com/mailman/listinfo/eap-features
>
> .
>



_______________________________________________
Eap-features mailing list
[EMAIL PROTECTED]
http://www.intellij.com/mailman/listinfo/eap-features

Reply via email to