AfterClassWithInfo
public abstract @interface AfterClassWithInfo
implements Annotation
com.android.tradefed.testtype.junit4.AfterClassWithInfo |
Jaminan serupa seperti AfterClass
tetapi metode yang dianotasi harus memerlukan parameter TestInformation
. Berjalan SETELAH metode AfterClass.
Menggunakan TestInformation#properties()
dapat membantu meneruskan informasi antara konteks statis & non-statis.
Contoh:
@AfterClassWithInfo public static void afterClassWithInfo(TestInformation testInfo) { menegaskanNotNull(perangkat); }
Lihat juga: