2

我是 Android 开发的新手,目前,我正在使用 Roboelectric 和 Koin 测试一项基本活动。

代码:

class SplashActivity : AppCompatActivity() {
    private val viewModel: LoginViewModel by viewModel()

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_splash)

        Stetho.initializeWithDefaults(this)

        val user = viewModel.getPersistedUser()

        if (user != null) {
            viewModel.setUser(user)
            startActivity(HomeActivity.getStartIntent(this))
        } else {
            startActivity(LoginActivity.getStartIntent(this))
        }
    }
}

val appModule = module(override = true) {
    ...

    viewModel<LoginViewModel>()
}

现在我在测试中要做的就是注入一个模拟版本的 viewModel 来模拟方法 getPersistedUser 的响应。

我如何使用 Roboelectric 和 Koin 做到这一点?

4

1 回答 1

0

首先,如果你想为SplashActivity. 最好使用 Expresso 测试框架(https://developer.android.com/training/testing/espresso

其次,如果您想在测试中使用 Koin 模拟您的视图模型,您可以加载您的 Koin 模块然后声明您的视图模型模拟,代码将类似于这样

class SplashActivityTest : AutoCloseKoinTest() {

    private val viewModel: LoginViewModel by inject()

    @Before
    fun before() {
        koinApplication {
            loadModules(appModule)
        }
        declareMock<LoginViewModel> {
            given(getPersistedUser()).willReturn { User(username, password) }
        }
    }

    @Test
    fun loadCurrentUserWhenActivityInit() {
        // verify your test here 
    }
}

更多细节在这里https://start.insert-koin.io/#/getting-started/testing

于 2020-01-06T03:07:17.560 回答