Hey coders,
I wonder if anyone can help me. I'm still learning GAE+GWT and trying to get into unit testing as I go along. I have finally managed to get my head around MVP and have written some basic tests to test my presenters, using mock objects for the view and server-side service. All good.
My question is this: How can I test whether my RPC calls are working? Should I even be trying to test them?
As far as I understand it - I can't use GWT.create() to make a real rpc service in a TestCase (have to mock it), and I can't create a datastore stub inside a GwtTest. If anyone can point me in the right direction, tell me where I'm confused I would appreciate it greatly.
Cheers,
Drew