interceptRealImplementation

abstract fun <BIND, IMPL : BIND> interceptRealImplementation(    key: DependencyKey<BIND>,     implementationToken: TypeToken<IMPL>,     interceptor: (IMPL) -> BIND = { it }): MockspressoBuilder

Register a request to create a real object of type implementationToken bound in the mockspresso graph with key. The supplied interceptor lambda will be called when the real object is created and allows the test code to wrap the newly constructed real object before it's used. This enables the mock-support plugins to include spy support.