Hi, I already have two types of tests. One type of test that separately tests the server side logic and the client side logic separately and independently and the second type of test that verifies the integration of both sides. I am also already using SyncProxy for some tests.
The reason why I would like to have integration tests using GWTTestCase is that I would like to have them automatically execute from a continuous integration server. I want to verify with those tests that any additional layer of infrastructure like Hibernate or DataNucleus does not introduce any incompatibilities in my data objects. As Hibernate or DataNucleus enhance the objects at runtime it is important for me to verify that these enhanced objects are still compatible when transferring them over the network to the client. A QuestionDefinition object that I create via the Java new operator may not be the same object that exists at runtime after being enhanced (byte code manipulation) by Hibernate or DataNucleus. Do you have any suggestions for that use case for me? -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine-java?hl=en.
