Last active
December 24, 2023 10:46
-
-
Save sebaslogen/0bc16a61c5df16c4164dd9ea49781a4d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@RunWith(AndroidJUnit4::class) // Update: back in 2022, this used to be @RunWith(RobolectricTestRunner::class) | |
class MyTests { | |
@get:Rule val composeTestRule = createComposeRule() | |
@Test fun `when I test, then it works`() { | |
// Some test code here | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment