Joao Parracho
06/27/2024, 8:06 AMbnorm
06/27/2024, 10:03 PMJoao Parracho
06/28/2024, 8:10 AMbnorm
06/28/2024, 2:06 PMandroidUnitTestDebug
. You may also want to add androidUnitTestRelease
as well depending on your build pipeline. You can print out all source set names that power-assert is matching against with the following task:
tasks.create("printSourceSets") {
doLast {
kotlin.targets.forEach { target ->
target.compilations.forEach { compilation ->
println(compilation.defaultSourceSet.name)
}
}
}
}
bnorm
06/28/2024, 2:07 PMpowerAssert { }
block to be top-level and not nested under kotlin { }
.Joao Parracho
06/28/2024, 2:11 PM