Hello, everyone! I have a question about creating Kotlin test code.
When I create a Kotlin test, both a TestClass.java file and a Kotlin JUnit5 Test Class.kt file are generated. However, when I disable K2 mode, only the TestClass.kt file is created.
Is there any solution to prevent the TestClass.java file from being generated, or to ensure only the Kotlin test file is created regardless of the K2 mode?