Skip to content

Instantly share code, notes, and snippets.

@LethalMaus
Last active August 29, 2023 19:14
Show Gist options
  • Select an option

  • Save LethalMaus/955f97aa7000bf54fd5ebaa9a8574a91 to your computer and use it in GitHub Desktop.

Select an option

Save LethalMaus/955f97aa7000bf54fd5ebaa9a8574a91 to your computer and use it in GitHub Desktop.
BuildFlavors8
class UiTests {
@get:Rule
val serverRule = MockWebServerRule(BuildConfig.BASE_URL)
@Test
fun testUiWithMockServer() {
// Set up mock server responses
serverRule.enqueue(MockResponse().setBody(/* JSON response */))
// Perform UI testing scenarios
// ...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment