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