Skip to content

Instantly share code, notes, and snippets.

@gunesmes
Created February 18, 2022 14:32
Show Gist options
  • Save gunesmes/325c00beefd8f04deb77b30eeed406f4 to your computer and use it in GitHub Desktop.
Save gunesmes/325c00beefd8f04deb77b30eeed406f4 to your computer and use it in GitHub Desktop.
package testrisk.dictionary.tests
import androidx.test.ext.junit.runners.AndroidJUnit4
import androidx.test.rule.ActivityTestRule
import org.junit.Before
import org.junit.Rule
import org.junit.runner.RunWith
import testrisk.dictionary.MainActivity
@RunWith(AndroidJUnit4::class)
open class BaseTest {
@Before
open fun setUp() {
}
@Rule
@JvmField
var activityTestsRule = ActivityTestRule(MainActivity::class.java, true, true)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment