android-test
android-test copied to clipboard
An extensive framework for testing Android apps
ExperimentalTestApi cleanup. Ensure methods that call ExperimentalTestApi are also marked with ExperimentalTestApi. Remove use of ExperimentalTestApi in runner.permission APIs, in favor of hiding.or exposing APIs as needed.
internal
Add DisplaySizeEspressoDeviceTest to gradle-tests
WIP require flat mode to rotate foldable emulators
[RNG] Use HardwareRendering native w/ shadows in Compose ViewCapture screenshots. New HardwareRendering currently requires 32+ (S+). This is enabled using a system property: ``` jvm_flags = ["-Drobolectric.screenshot.hwrdr.native=true"] ```
### Description I was recently forced to upgrade the version of androidx.test:runner that we use from 1.4.0 to 1.5.0. After I did that, I noticed a subtle problem where not...
### Description in sdk26 is OK, in sdk28 when i `new Gson().toJson(bluetoothDevice) ` is "{}"
### Description While a test suite is running, the `AndroidJUnitRunner` thread holds the test suite result in a local variable of type `org.junit.runner.Result` where `Result.failures` is a list of `org.junit.runner.notification.Failure`...
To avoid handling intent twice, we nullify the data of the intent after having processed it during the activity `onCreate` phase. It works great but it makes our test fails...
### Description I have a project where I am using an hilt extension to do instrumented testing on my fragments. I am currently using version 1.5.7 from fragment-testing library and...