Skip to content

Instantly share code, notes, and snippets.

@Kritarie
Created August 6, 2025 15:35
Show Gist options
  • Select an option

  • Save Kritarie/cc71ffbafbda03bda5982f2b274ac974 to your computer and use it in GitHub Desktop.

Select an option

Save Kritarie/cc71ffbafbda03bda5982f2b274ac974 to your computer and use it in GitHub Desktop.
@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