Hello everyone :wave: I’m trying to test my compos...
# compose
o
Hello everyone 👋 I’m trying to test my composables using androidTests, the tests passe correctly but all functions mentioned in the official doc are marked as
deprecated
without mentioning alternatives ! Am I missing something ? 🤔
m
All these methods were moved the Compose test rule class, so you'll need to call these methods like this:
composeTestRule.onRoot
👆🏼 3
o
Effectively they belong now
composeTestRule
. Thank you ! : )