Skip to content

Instantly share code, notes, and snippets.

@fo2rist
Last active June 18, 2019 02:38
Show Gist options
  • Save fo2rist/6286618158c2a4cd6f47cae422f89f98 to your computer and use it in GitHub Desktop.
Save fo2rist/6286618158c2a4cd6f47cae422f89f98 to your computer and use it in GitHub Desktop.
Simple Espresso Test Setup / Infinite Test
@RunWith(AndroidJUnit4::class)
class BaseMainActivityTest {
@get:Rule
var activityRule = ActivityTestRule(MainActivity::class.java)
@Test
fun acitivityIsRunning() {
if (true) while(true) Thread.sleep(100); /*DEBUG*/
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment