Kotlin单元测试未找到模块依赖接口

时间:2017-09-23 15:45:52

标签: android gradle mockito kotlin

我有一个app模块和一个domain模块。在我的domain模块中,我有一个名为Repository的界面。在我的app模块中,我使用dagger为我的课程注入了一个实现,这很好。

当我接着使用kotlin单元测试进行测试时,在运行时我得到NoClassDefFoundError

我还尝试将domain模块包含在我的app模块依赖项中,但这样也无效:

testImplementation project(':domain')

以下是我当前的测试依赖项以及我如何包含模块

implementation project(':domain')
testImplementation 'junit:junit:4.12'
testImplementation 'com.nhaarman:mockito-kotlin:1.5.0'

在我的单元测试中,我这样使用它可能是问题:

@Mock lateinit var mockRepo : Repository

1 个答案:

答案 0 :(得分:1)

感谢@Mark Keen,我在Jetbrains网站上找到了reported bug

这包含来自名为@Calin的用户的解决方案。将以下内容添加到项目的build.gradle文件中并触发一个gradle同步就可以了。

subprojects { subProject ->
    afterEvaluate {
        if (subProject.plugins.hasPlugin("kotlin") && subProject.plugins.hasPlugin("java-library")) {
            subProject.kotlin.copyClassesToJavaOutput = true
            subProject.jar.duplicatesStrategy = DuplicatesStrategy.EXCLUDE
        }
    }
}