Stephan Schroeder
06/26/2019, 3:22 PMtask integrationTest(type: Test) {
useJUnit {
include '**/*IntegrationTest.class'
}
}
to KotlinDSL?
I tried
task {
named<Test>("integrationTest") {
useJUnit {
include("**/*IntegrationTest.class")
}
}
}
but get Task with name 'integrationTest' not found in root project
.Stephan Schroeder
06/26/2019, 3:25 PMnamed
-> task
Czar
06/26/2019, 8:31 PMregister