2014-11-17 13:35:15 -05:00
|
|
|
apply plugin: 'java'
|
|
|
|
apply plugin: 'kotlin'
|
|
|
|
apply plugin: 'jacoco'
|
|
|
|
|
|
|
|
def androidModule = project(':app')
|
2014-11-17 14:09:44 -05:00
|
|
|
def firstVariant = androidModule.android.applicationVariants.toList().first()
|
2014-11-17 13:35:15 -05:00
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile androidModule
|
|
|
|
|
2014-11-17 14:09:44 -05:00
|
|
|
testCompile firstVariant.javaCompile.classpath
|
|
|
|
testCompile firstVariant.javaCompile.outputs.files
|
2014-11-17 13:35:15 -05:00
|
|
|
testCompile files(androidModule.plugins.findPlugin("com.android.application").getBootClasspath())
|
|
|
|
|
|
|
|
testCompile 'junit:junit:4.+'
|
2014-11-17 14:09:44 -05:00
|
|
|
testCompile 'org.robolectric:robolectric:+'
|
2014-11-17 13:35:15 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
jacocoTestReport {
|
|
|
|
// Add Android sources/classes for coverage
|
|
|
|
additionalSourceDirs files(androidModule.android.sourceSets.main.java.srcDirs)
|
2014-11-17 14:09:44 -05:00
|
|
|
additionalClassDirs firstVariant.javaCompile.outputs.files
|
2014-11-17 13:35:15 -05:00
|
|
|
|
|
|
|
reports {
|
|
|
|
xml.enabled true
|
|
|
|
csv.enabled false
|
|
|
|
html.destination "${buildDir}/jacocoHtml"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Code coverage should depend on the tests
|
|
|
|
project.jacocoTestReport.dependsOn project.test
|