这里是我的意式浓缩咖啡的测试:
@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()
仅一次。
有可能吗?