Android工作室代码覆盖率未显示任何Kotlin类

Chr*_*owd 19 android unit-testing kotlin android-studio

我有2个基于Kotlin的AS项目.一个工作正常,另一个没有.两者都具有相同的结构和gradle配置.我正在使用Kotlin 1.1.4-2和AS 3.0b2.

问题是,当我运行代码覆盖时,我正在测试的类甚至都没有显示在覆盖率报告下.我唯一看到的是R.java和BuildConfig.java,但我的源文件都没有找到.

所有源文件都是基于Kotlin的.我正在使用Spek进行单元测试.与我的其他功能项目相同的设置和版本.我尝试使用JaCoCo和Jetbrains代码覆盖,但都不起作用.

我道歉,我还没能嵌入图片.

这是问题: 报道报道

这是我的项目结构: 文件结构

这是我的gradle android块:

compileSdkVersion 26
buildToolsVersion "26.0.1"

defaultConfig {
    minSdkVersion 16
    targetSdkVersion 26
    versionCode 1
    versionName libraryVersion
}

buildTypes {
    debug {
        testCoverageEnabled = true
    }
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
Run Code Online (Sandbox Code Playgroud)

和我的依赖:

implementation fileTree(dir: 'libs', include: ['*.jar'])

implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
implementation "io.reactivex.rxjava2:rxkotlin:2.1.0"

testImplementation 'junit:junit:4.12'
testImplementation "org.jetbrains.kotlin:kotlin-test:$kotlin_version"
testImplementation 'org.jetbrains.spek:spek-api:1.1.2'
testImplementation 'org.jetbrains.spek:spek-junit-platform-engine:1.1.2'
testImplementation 'org.junit.platform:junit-platform-runner:1.0.0-M4'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.0.0-M4'

implementation 'com.android.support:appcompat-v7:26.0.1'

implementation 'com.squareup.okhttp3:okhttp-ws:3.3.1'
implementation 'com.google.protobuf:protobuf-java:2.6.1'
Run Code Online (Sandbox Code Playgroud)

我试过跑步

task copyTestClasses(type: Copy) {
  from "build/tmp/kotlin-classes/debugUnitTest"
  into "build/intermediates/classes/debug"
}

task copySdkClasses(type: Copy) {
  from "build/tmp/kotlin-classes/debug"
  into "build/intermediates/classes/debug"
}
Run Code Online (Sandbox Code Playgroud)

在我的测试之前,这也不起作用.

奇怪的是我的其他项目,使用相同的AS版本,Kotlin版本和项目结构,工作正常并生成适当的代码覆盖率.

任何帮助,将不胜感激.

小智 9

尝试使用JaCoco覆盖,这是一个IntelliJ IDEA问题Kotlin内联关键字导致IntelliJ IDEA覆盖率报告0%

如何使用JaCoco获得覆盖: 使Android Studio测试覆盖率有效

恢复:

  1. 单击编辑配置 运行编辑配置

  2. go Run/Debug Configurations-> Defaults-> Android JUnit select te Tap Code Coverage 在此处输入图像描述

  3. 选择覆盖范围:选择JaCoCo

  4. 申请 - >好的

  5. 再次进行测试,瞧你会得到报道