一次只能启动一些代码。并非在每次测试之前

时间:2019-06-04 09:50:01

标签: android-espresso

这里是我的意式浓缩咖啡的测试:

@RunWith(AndroidJUnit4::class)
class JsonViewActivityTest {
    private val instrumentation = InstrumentationRegistry.getInstrumentation()
    private val context = instrumentation.getContext()
    private val targetContext = instrumentation.getTargetContext()
    private val TOOLBAR_TITLE = "Json View"

    @get:Rule
    var jsonViewIntentsTestRule = IntentsTestRule(JsonViewActivity::class.java, false, false)

    @Before
    fun setup() {

    }

    @Test
    fun mytest1() {

}

    @Test
    fun mytest2() {

}

    @Test
    fun mytest3() {

    }

在每次测试之前运行方法setup()。这是因为它用@Before进行了注释。好吧。

但是我需要运行setup() 仅一次。 有可能吗?

0 个答案:

没有答案