https://kotlinlang.org logo
Title
b

Brian Donovan

02/07/2022, 3:00 PM
Hey all, can someone explain to me in layman terms what this means.: Jetpack Compose is an instrumentation test,you can use a test framework such as Espresso. thanks
m

mattinger

02/07/2022, 3:20 PM
I’m not sure who wrote that, but compose can be rendered and tested in either a robolectric or instrumentation test environment. The main difference is that robolectric is a simulated headless environment that does not draw to the screen and thus doesn’t require an actual device/emulator. Instrumented tests run on a device/emulator, so the range of things you might test with them is different that what you might test in robolectric environment.
b

Brian Donovan

02/07/2022, 5:14 PM
ty