python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
How can I get string resource in Jetpack composable test
We can get the string resource in Composable through stringResource like
@Composable
fun Heading(
@StringRes textResource: Int
) {
Text(
text = stringResource(id = textResource),
...

Shahab Rauf
Votes: 0
Answers: 3
Android Unit test: Error: EmptyFragmentActivity cannot be cast to BaseActivity. How to get Instance of an Activity which is not defined in Manifest?
I am new to writing Android Test Cases. I am trying to write a test case for a project which is already developed. It has so many Activities and Fragments and we are using Navigation Graph for navigat...

Aanal Shah
Votes: 0
Answers: 0
Filtering Android Connected Tests
I have a few "connected" tests that are only relevant to run on a specific device model or on a specific brand and should be skipped on other brands/models.
I may be missing something, but t...

ben75
Votes: 0
Answers: 1
MockK's "every" "returns null" not returning "null" but a NetworkInfo object with null and false values
In my unit test I am calling the following:
every { connectivityManager.activeNetworkInfo } returns null
but when I debug I get a NetworkInfo object filled with null and false values
networkInfo ...
jteichert
Votes: 0
Answers: 1