class MockDatastore : ThrowingDatastore
Datastore implementation that uses a list of entities as its fake contents.
TODO(colin): this doesn't support the full set of datastore operations yet. Fill this in as more functionality is implemented. For now this will throw on any unimplemented operations.
TODO(colin): we'll want to do some synchronization around updating the internal state.
MockDatastore(entities: List<<ERROR CLASS>>)
Datastore implementation that uses a list of entities as its fake contents. |
fun get(key: <ERROR CLASS>?): <ERROR CLASS>? |
|
fun put(entity: <ERROR CLASS><out <ERROR CLASS>>?): <ERROR CLASS> |
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(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(): <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 |