ebrowne72
ebrowne72
In our project (using JUnit 4) we define a `jacocoTestReport` Gradle task: task jacocoTestReport(type: JacocoReport, dependsOn: ["testInternalDebugUnitTest"]) { group = "Reporting" description = "Generate Jacoco coverage reports" reports { xml.enabled...
Using v10.1.0. I have an Android project with many modules. In the main project build script we have the following: ``` subprojects { apply plugin: 'org.jlleitschuh.gradle.ktlint' // Global ktlint config...
I use the [Unmock plugin](https://github.com/bjoernQ/unmock-plugin) to use actual Android classes in my tests. It creates /build/intermediates/unmocked-android.jar, which is added to the classpath when I run tests with the Spek plugin,...
### Expected Behavior Mockito has [lenient stubbing](https://javadoc.io/doc/org.mockito/mockito-core/latest/org/mockito/Mockito.html#46), where a stub defined as lenient but not called during the test will not report an error when strict stubbing is enabled. I'd...