classMyTest:KoinTest{// Lazy inject property
valcomponentA:ComponentAbyinject()// use it in your tests :)
@Testfun`make a test with Koin`(){startKoin{modules(appModule)}// use componentA here!
}}
你能使用 KoinTestRule JUnit规则来开启或关闭你的Koin上下文:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
classMyTest:KoinTest{@get:RulevalkoinTestRule=KoinTestRule.create{modules(appModule)}// Lazy inject property
valcomponentA:ComponentAbyinject()// use it in your tests :)
@Testfun`make a test with Koin`(){// use componentA here!
}}
classMyTest:KoinTest{@get:RulevalkoinTestRule=KoinTestRule.create{modules(appModule)}// required to make your Mock via Koin
@get:RulevalmockProvider=MockProviderRule.create{clazz->Mockito.mock(clazz.java)}valcomponentA:ComponentAbyinject()@Testfun`declareMock with KoinTest`(){declareMock<ComponentA>{// do your given behavior here
given(this.sayHello()).willReturn("Hello mock")}}}