I have a Kotlin project and when I run my JUnit tests, I can\'t see tests execution result in IntelliJ and get this message instead:
test events were not
your most likey not tellinig the system how to run the tests.
on your class header define a test runner like this for example:
@RunWith(MockitoJUnitRunner::class) class MYTest {//...}
or can define junitX runner , etc