在Android Studio中调试测试用例

时间:2016-03-05 02:19:07

标签: android unit-testing

如何在Android studio中调试JUnit测试用例?我放置了一个断点并使用了#34; Debug Test case"但它只是运行代码并忽略断点。

更新: 这是我的build.gradle的内容

apply plugin: 'com.android.application'

android {
  compileSdkVersion 23
  buildToolsVersion "23.0.2"

defaultConfig {
    applicationId "com.****.mancala"
    minSdkVersion 18
    targetSdkVersion 23
    versionCode 1
    versionName "1.0"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
    debug {
        debuggable true
    }
}
}

dependencies {
   compile fileTree(dir: 'libs', include: ['*.jar'])
   testCompile 'junit:junit:4.12'
   compile 'com.android.support:appcompat-v7:23.1.1'
}

2 个答案:

答案 0 :(得分:1)

取决于所使用的Run/Debug Configuration,具有相同断点的相同代码将停止还是不停止。

  • 对于具有Test kind: All in package的配置,执行 不会在断点处停止
  • 对于具有Test kind: ClassTest kind: Method的配置,执行将在断点处停止
  • 对于具有Test kind: All in directoryDirectory: [myProjectPath]/app/src/test的配置,执行将在断点处停止

答案 1 :(得分:-1)

确保在build.gradle文件(包含所有依赖项的文件)中,您在调试版本类型中拥有debuggable true

同样只是为了确保其有效断点(不是空行等)