課前帶訊息
public abstract @interface BeforeClassWithInfo
implements Annotation
com.android.tradefed.testtype.junit4.BeforeClassWithInfo |
與BeforeClass
類似的保證,但註解的方法必須需要TestInformation
參數。在 beforeClass 方法之前運行。
使用TestInformation#properties()
可以幫助在靜態和非靜態上下文之間傳遞訊息。
例子:
@BeforeClassWithInfo public static void beforeClassWithInfo(TestInformation testInfo) {assertNotNull(device); }
也可以看看: