Hi there, I've been slowly writing a plugin for GWT development and have some slightly complicated testing requirements which I'm hoping the new test function slated for 0.8 will support. My projects use both TestNG (my preferred framework) and JUnit (required for testing certain GWT aspects).
My plugin needs to be able to do the following. 1. Need be able to create two test tasks, one that uses TestNG and one that uses JUnit 2. Run TestNG tests live in the normal test location (src/test/java, src/test/resources) 3. Run JUnit tests live under src/gwt-test/java and src/gwt-test/resources 4. Run JUnit (forked) with both custom JVM and normal -D args (for the GWT bits) JUnit equivalent example: java -XstartOnFirstThread -Xmx256M -Dgwt.args="-out build/reports/gwt" -classpath <cp goes here> junit.textui.TestRunner the.class.UnderTest Will this be possible? Thanks and cheers Andrew
