課前帶訊息

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); }

也可以看看: