In a TestCase class with more than one test, such as the one
shown below, it would be nice if the integrated JUnit interface
would allow me to run just one of the two tests.

I realize that you can do this in the GUI test runner, but
the GUI test runner class loaders STILL blow up when I
try to run tests that use XML.

=========================================
package foo.bar;

import junit.framework.TestCase;

public class FooTest
        extends TestCase
{
     public FooTest (String testName)
     {
         super (testName);
     }

     public void testOne ()
     {
         // test code goes here
     }

     public void testTwo ()
     {
         // test code goes here
     }
}
=========================================



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

Reply via email to