AfterClassWithInfo
public abstract @interface AfterClassWithInfo
implements Annotation
com.android.tradefed.testtype.junit4.AfterClassWithInfo |
Garantias semelhantes às AfterClass
, mas o método anotado deve exigir um parâmetro TestInformation
. Executa métodos AFTER AfterClass.
Usar TestInformation#properties()
pode ajudar a passar informações entre contextos estáticos e não estáticos.
Exemplo:
@AfterClassWithInfo public static void afterClassWithInfo(TestInformation testInfo) { assertNotNull(device); }
Veja também: