https://kotlinlang.org logo
#compose
Title
# compose
o

Oussama Haff.

10/11/2020, 4:39 PM
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

msfjarvis

10/11/2020, 6:31 PM
All these methods were moved the Compose test rule class, so you'll need to call these methods like this:
composeTestRule.onRoot
👆🏼 3
o

Oussama Haff.

10/11/2020, 9:40 PM
Effectively they belong now
composeTestRule
. Thank you ! : )