课后信息

public abstract @interface AfterClassWithInfo
implements Annotation

com.android.tradefed.testtype.junit4.AfterClassWithInfo


AfterClass类似的保证,但带注释的方法必须需要TestInformation参数。在 AfterClass 方法之后运行。

使用TestInformation#properties()可以帮助在静态和非静态上下文之间传递信息。

例子:

@AfterClassWithInfo public static void afterClassWithInfo(TestInformation testInfo) {assertNotNull(device); }

也可以看看: