Created
August 6, 2025 15:35
-
-
Save Kritarie/cc71ffbafbda03bda5982f2b274ac974 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(ExhaustiveTestRunner::class) | |
| @Exhaustive(DeepLink::class) | |
| @ExhaustiveCase(DeepLink.TransferMoney::class, DeepLinkTest.TransferMoneyTest::class) | |
| @ExhaustiveCase(DeepLink.AccountOverview::class, DeepLinkTest.AccountOverviewTest::class) | |
| class DeepLinkTest { | |
| class TransferMoneyTest { | |
| @Test | |
| fun testTransferMoney() { | |
| // ... | |
| } | |
| } | |
| class AccountOverviewTest { | |
| @Test | |
| fun testAccountOverview() { | |
| // ... | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment