Skip to content

Instantly share code, notes, and snippets.

@Audhil
Last active August 1, 2019 18:08
Show Gist options
  • Save Audhil/c381d3431857689229ec030369871a57 to your computer and use it in GitHub Desktop.
Save Audhil/c381d3431857689229ec030369871a57 to your computer and use it in GitHub Desktop.
class TestApplicationModule(delegate: GDelegate) : ApplicationModule(delegate) {
override fun giveAppAPIs(): AppAPIs = mockk()
override fun giveRetrofitService(okHttpClient: OkHttpClient): AppAPIs = mockk()
override fun giveOkHttpClient(loggingInterceptor: HttpLoggingInterceptor): OkHttpClient = mockk()
override fun giveLoggingInterceptor(): HttpLoggingInterceptor = mockk()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment