Jemo
05/30/2021, 12:19 PMAndroidTest/java
not executes any tests.
Here is my test class
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?