kotlin-datastore / org.khanacademy.datastore.testutil

Package org.khanacademy.datastore.testutil

Types

DatastoreTestStub

class DatastoreTestStub : DatastoreBackend

MockDatastore

class MockDatastore : ThrowingDatastore

Datastore implementation that uses a list of entities as its fake contents.

ThrowingDatastore

open class ThrowingDatastore

An implementation of Google's Datastore that throws on all methods.

Functions

withMockDatastore

fun <T> withMockDatastore(vararg entities: Keyed<*>, block: () -> T): T

Within a block of code, mock the datastore to contain the provided objects.

fun <T> withMockDatastore(vararg entities: <ERROR CLASS>, block: () -> T): T

Within a block of code, mock the datastore to contain the provided entities.