play.api.test
A trait declared on a class that contains an def app: Application, and can provide instances of a class. Useful in integration tests.
def app: Application
Given an application, provides an instance from the application.
the type to return, using app.injector.instanceOf
app.injector.instanceOf
an instance of type T.
A trait declared on a class that contains an
def app: Application
, and can provide instances of a class. Useful in integration tests.