I use GWT with Hibernate. For testing my server side Methods I use the
GWT-JUnit implementation. It works fine.
But now I've added a new Testcase. It first loads the data that is to
be expected as the answer by the server from the database (via
Hibernate) and subsequently compares the loaded data with the data
retrieved from the Server. Actually it is simply an assertEquals which
I want to perfrom.

Now, when I want to execute the test I get these error messages that I
don't understand:


Compiling Java source files in module 'kiretose.Index.JUnit'
   Removing units with errors
      [ERROR] Errors in 'file:/path/to/my/project/kiretose/test/
kiretose/client/PeopleServiceTest.java'
         [ERROR] Line 70: No source code is available for type
org.hibernate.Session; did you forget to inherit a required module?
         [ERROR] Line 70: No source code is available for type
org.hibernate.cfg.AnnotationConfiguration; did you forget to inherit a
required module?
         [ERROR] Line 73: No source code is available for type
org.hibernate.Query; did you forget to inherit a required module?
         [ERROR] Line 77: No source code is available for type
kiretose.server.universal.UserData; did you forget to inherit a
required module?



Line 70 in PeopleServiceTest.java looks like this
Session session = new
AnnotationConfiguration().configure().buildSessionFactory().openSession();

What do I have to do?


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" 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-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to