Hi,

I am using gwt 2.2. I build and test with ant using the junit and 
junitreport tasks to create an output report.
As I build GWTTestCases, I see that build performance has slowed since the 
runtime has to be started for each GWTTestCase. So, I created a GWTTestSuite 
as the doco recommends and integrated that into my ant build.

The tests are all compiled and executed and the suite reports executed, 
failed and errored tests successfully to stdout in the ant build. But when I 
look at the junitreport there is no report for any of the GWT Tests in the 
suite at all. My directory which contains xml output for each junit test 
contains no xml file(s) at all for the suite.

Is there something special I need to to to get a GWTTestSuite to create 
output xml. My ant xml looks as follows:

<junit fork="yes" printsummary="yes" haltonfailure="no">
<jvmarg line="-Xmx256m" />
<sysproperty key="gwt.args" value="-standardsMode -logLevel WARN" />
<sysproperty key="java.awt.headless" value="true" />

<sysproperty key="log4j.configuration" 
value="file:${basedir}/../src/test/resources/log4j.properties"/>
<classpath>
<path refid="run-test-classpath"/>
</classpath>
<batchtest todir="${target.junit.output.dir}" >
<fileset dir="test/gwt/java" >
<include name="a/b/c/GwtShareTestSuite.*"/>
</fileset>
</batchtest>
<formatter type="xml" />
</junit>


Thanks

chris

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to