SebelumKelasDenganInfo

public abstract @interface BeforeClassWithInfo
implements Annotation

com.android.tradefed.testtype.junit4.BeforeClassWithInfo


Jaminan serupa seperti BeforeClass tetapi metode yang dianotasi harus memerlukan parameter TestInformation . Berjalan SEBELUM metode beforeClass.

Menggunakan TestInformation#properties() dapat membantu meneruskan informasi antara konteks statis & non-statis.

Contoh:

@BeforeClassWithInfo public static void beforeClassWithInfo(TestInformation testInfo) { menegaskanNotNull(perangkat); }

Lihat juga: