Documentation on GWTTesting is incorrect/Broken link
----------------------------------------------------
Key: MGWT-155
URL: http://jira.codehaus.org/browse/MGWT-155
Project: Maven 2.x GWT Plugin
Issue Type: Bug
Affects Versions: 1.1, 1.0, 2.0, 1.2
Reporter: Jeff Larsen
Priority: Minor
The link which points to GWTTestCase is broken. Under the subheading of "Use
GWTTestSuite padawan"
the link points to
http://google-web-toolkit.googlecode.com/svn/javadoc/1.5/com/google/gwt/junit/tools/GWTTestSuite.html}GWTTestSuite
which obviously won't resolve to a page.
On top of that the documentation that Google provides will not get maven to
work with GWTTestSuite. The snippet below is what will allow both the Eclipse
plugin and maven to run the test cases.
public class MyGwtTestSuite extends TestCase /*note this is TestCase and not
TestSuite */{
public static Test suite(){
GwtTestSuite suite = new GwtTestSuite("All Gwt Tests go in here");
suite.addTestSuite(GwtTest1.class);
return suite;
}
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe from this list, please visit:
http://xircles.codehaus.org/manage_email