If by "jars specific to the local dev server" you mean - appengine-local-runtime.jar - appengine-api-stubs.jar
Yes... I just barely figured out that these were needed (after much frustration and running across a post from two years ago that mentioned these jars). That was all I needed! Thanks for replying all the same! P.S. I'm an idiot and did not read the Local Unit Testing<http://code.google.com/appengine/docs/java/tools/localunittesting.html> page in the documentation carefully enough; I missed this: However, if your tests or code under test have these dependencies you'll need a few more JARs on your testing classpath: ${SDK_ROOT}/lib/impl/appengine-api.jar, ${SDK_ROOT}/lib/impl/appengine-api-labs.jar, and ${SDK_ROOT}/lib/impl/appengine-api-stubs.jar. These JARs make the runtime APIs and the local implementations of those APIs available to your tests. -- 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.
