Je suis à l'étape 5 de faire mon premier GWTTestCase. Je ne peux pas trouver le "gwt-dev-windows.jar" requis. Je suis sur Eclipse 3.5 et le SDK GWTOù puis-je trouver gwt-dev-windows.jar? Il ne semble pas qu'il a été inclus dans le SDK GWT pour Eclipse
Run your test case. Use the class junit.textui.TestRunner as your main class and pass
the full name of your test class as the command line argument, e.g. com.example.foo.client.FooTest. When running the test case, make sure your classpath includes:
Your project's src directory
Your project's bin directory
The gwt-user.jar library
One of gwt-dev-windows.jar, gwt-dev-linux.jar, or gwt-dev-mac.jar depending on your platform
The junit.jar library
similaire à http://stackoverflow.com/questions/3251523/gwt-dev-mac-jar-is-missing –