Running tests inside `AndroidTest/java` not execut...
# multiplatform
j
Running tests inside
AndroidTest/java
not executes any tests. Here is my test class
Copy code
import org.junit.Test
import org.testng.Assert.assertTrue

class SampleAndroidTest {
  @Test
  fun test() {
    assertTrue(true)
  }
}
After running the tests, I got that result. Can anyone tell me what I'm missing?