appengine local datastore integration testing with spring
- by mirror303
Hi all,
I want to write some integration tests to see how my spring-managed DAO's behave when talking to the appengine datastore.
Following the spring manual I will be providing my test-classes with the proper annotations:
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = { "classpath:applicationContext.xml" })
After a…