If you’re using Android Studio Arctic Fox, you need to modify your app/build.gradle a bit.
Add
android {
testOptions {
execution 'ANDROIDX_TEST_ORCHESTRATOR'
unitTests.all {
useJUnitPlatform() // <--- this is the important part
}
}
}
And also make sure you add junit-engine to your dependencies
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.7.1'