Package com.google.cloud.datastore.testing

A testing helper for Google Cloud Datastore.

See: Description

Package com.google.cloud.datastore.testing Description

A testing helper for Google Cloud Datastore.

A simple usage example:

Before the test:

 LocalDatastoreHelper helper = LocalDatastoreHelper.create();
 helper.start();
 Datastore localDatastore = helper.options().service();
  

After the test:

 helper.stop();
  
See Also:
Google Cloud Java tools for testing

Copyright © 2016 Google. All rights reserved.