open class ThrowingDatastore
An implementation of Google's Datastore
that throws on all methods.
We use this as the default to make sure that tests always have to choose their behavior explicitly.
TODO(colin): I autogenerated these stubs from a java interface, and it's not clear that the nullability is right in all cases. Audit this as we fill in the mocked datastore implementation.
ThrowingDatastore()
An implementation of Google's |
open fun add(entity: <ERROR CLASS><out <ERROR CLASS>>?): <ERROR CLASS> open fun add(vararg entities: <ERROR CLASS><out <ERROR CLASS>>?): MutableList<<ERROR CLASS>> |
|
open fun allocateId(key: <ERROR CLASS>?): <ERROR CLASS> open fun allocateId(vararg keys: <ERROR CLASS>?): MutableList<<ERROR CLASS>> |
|
open fun delete(vararg keys: <ERROR CLASS>?): Unit |
|
open fun fetch(keys: MutableIterable<<ERROR CLASS>>?, vararg options: <ERROR CLASS>?): MutableList<<ERROR CLASS>> open fun fetch(vararg keys: <ERROR CLASS>?): MutableList<<ERROR CLASS>> |
|
open fun get(key: <ERROR CLASS>?, vararg options: <ERROR CLASS>?): <ERROR CLASS> open fun get(keys: MutableIterable<<ERROR CLASS>>?, vararg options: <ERROR CLASS>?): MutableIterator<<ERROR CLASS>> open fun get(key: <ERROR CLASS>?): <ERROR CLASS>? open fun get(vararg keys: <ERROR CLASS>?): MutableIterator<<ERROR CLASS>> |
|
open fun getOptions(): <ERROR CLASS> |
|
open fun newBatch(): <ERROR CLASS> |
|
open fun newKeyFactory(): <ERROR CLASS> |
|
open fun newTransaction(options: <ERROR CLASS>?): <ERROR CLASS> open fun newTransaction(): <ERROR CLASS> |
|
open fun put(entity: <ERROR CLASS><out <ERROR CLASS>>?): <ERROR CLASS> open fun put(vararg entities: <ERROR CLASS><out <ERROR CLASS>>?): MutableList<<ERROR CLASS>> |
|
open fun <T> run(query: <ERROR CLASS><T>?, vararg options: <ERROR CLASS>?): <ERROR CLASS><T> open fun <T> run(query: <ERROR CLASS><T>?): <ERROR CLASS><T> |
|
open fun <T> runInTransaction(callable: <ERROR CLASS><T>?): T open fun <T> runInTransaction(callable: <ERROR CLASS><T>?, options: <ERROR CLASS>?): T |
|
open fun update(vararg entities: <ERROR CLASS>?): Unit |
class MockDatastore : ThrowingDatastore
Datastore implementation that uses a list of entities as its fake contents. |