Quick JUnit question. I\'m running some unit tests that involve starting up the GUI and doing a load of stuff.
I would like to see the results after the test to conf
One possibility is that your JUnit test is executing a tearDown() method, perhaps in a base class, which shuts down the GUI. If so, you can override the tearDown() method in your JUnit test to prevent this behaviour. E.g.
protected void tearDown() { //do nothing }