From: <ad...@jb...> - 2005-04-27 22:41:21
|
I've never liked the idea of passing arguments to tests this way. For a start, it makes it difficult to run the those tests in IDEs. But more importantly, it also doesn't scale when more than one test in the same suite wants to do a similar but incompatible thing. I prefer the mechanism where the test bootstraps its own environment, though I've never found a good generic solution to this problem. i.e. being able to run the tests as unit tests inside the home project, and also bundling the tests for binary distribution into some larger testsuite or QA environment. I guess this is one for the custom TestRunner we want to write for other reasons like being able to simulate a JBoss crash or reboot? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3875678#3875678 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3875678 |