BeforeClassWithInfo

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

以下も参照してください。