PrimaClasseConInfo
public abstract @interface BeforeClassWithInfo
implements Annotation
com.android.tradefed.testtype.junit4.BeforeClassWithInfo |
Garanzie simili a BeforeClass
ma il metodo annotato deve richiedere un parametro TestInformation
. Esegue PRIMA dei metodi beforeClass.
L'utilizzo di TestInformation#properties()
può aiutare a trasferire informazioni tra contesto statico e non statico.
Esempio:
@BeforeClassWithInfo public static void beforeClassWithInfo(TestInformation testInfo) { assertNotNull(device); }
Guarda anche: