[appengine-java] JDO - GWT - JUNIT testing examples

2010-01-26 Thread aswath satrasala
Hi, I am using GWT and JDO to write a simple create and list Employee application. I got this working using TransferObjects . How to test the GWT asysnc calls with local datastore using Junit. -Aswath -- You received this message because you are subscribed to the Google Groups "Google App Engi

Re: [appengine-java] JDO - GWT - JUNIT testing examples

2010-01-27 Thread Ikai L (Google)
I'm no expert on how to unit test GWT, but in terms of testing the server, for a unit test it probably is a better idea to simply test the servlet. I've heard HtmlUnit is pretty good for this. Here's a guide for setting up JUnit to work with the datastore: http://code.google.com/appengine/docs/jav

Re: [appengine-java] JDO - GWT - JUNIT testing examples

2010-02-02 Thread Andreas Blomqvist
Htmlunit doesnt work on GAE due to restrictions. Getting this error: java.lang.NoClassDefFoundError: java.net.URLStreamHandler is a restricted class. Please see the Google App Engine developer's guide for more details. If anyone has any insights on how to resolve this please let me know. Thinkin