The Kotlin DSL equivalent would be: ``` tasks { ...
# gradle
b
The Kotlin DSL equivalent would be:
Copy code
tasks {
  “test”(Test::class) {
    useJUnitPlatform()
  }
}
👍 3