aniruddha dhamal
@Composable fun greeting() { Text(text = "Hello there!") } @Test fun testGreeting() { composeTestRule.setContent { greeting() } composeTestRule .onNodeWithText("Hello there!") .assertIsDisplayed() }
Michael Torres
A modern programming language that makes developers happier.