probably a kotlin question but why is it ``` suit...
# community-support
c
probably a kotlin question but why is it
Copy code
suites {
    val test by getting(JvmTestSuite::class) {

    }
and not
Copy code
val test by getting<JvmTestSuite>() {
v
iirc because it would be
getting<TestSuite, JvmTestSuite>()
then. With the class as argument, the type argument can be inferred. And either have to make all type arguments explicit, or all inferred.
e
if you don't like to write
::class
you can also affect the interference by writing the type on the lhs,
Copy code
val test: JvmTestSuite by getting
👍 1