[Just to give a n00b context, Im beginning to setup a full fledged dev project environment in InteliJ. And this is my 1st query.]
When I setup a unit test in a project module package, kotline imports a bunch of testing libraries there starting with io.kotlin...
like this:
//import groovy.lang.GroovyLogTestCase
//import groovy.transform.ASTTest
//import io.kotlintest.specs.StringSpec
//import io.kotlintest.specs.FunSpec
//import io.kotlintest.TestCase
//import io.kotlintest.TestResult
//import io.kotlintest.shouldBe
//import io.kotlintest.matchers.exactly
//import io.kotlintest.matchers.shouldBe
//import io.kotlintest.specs.FunSpec
but none of io.kotlintests could be found. Am I missing something in package.
I see JUnit5 is available in the project module settings as an available library.
Also, should I be following the vanilla io.kotlintest library.
Would also appreciate some starting resources/video on this. thanks.