Hey all, can someone explain to me in layman terms...
# compose
b
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
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
ty