Hi,
I have a set of JUnit tests that are using the LocalDatastoreService
and the LocalMemcacheService.
In the setUp and tearDown I have:
@Before
public void setUp() throws Exception {
memCacheHelper.setUp();
dataStoreHelper.setUp();
}
@After
public void tearDown() throws Exception {
memCacheHelper.tearDown();
dataStoreHelper.tearDown();
}
The dataStoreHelper occasionally (and not always) throws a
NullPointerException.
The exception has no message and doesn't detail why it's failed.
Originally I thought it was because I wasn't using the dataStoreHelper
in all my tests but further tests have suggested this isn't true. It
fails even when I use the dataStoreHelper.
The memCacheHelper doesn't seem to ever fail.
Any ideas?
Ed
--
You received this message because you are subscribed to the Google Groups
"Google App Engine" 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?hl=en.