BeforeClassWithInfo

public abstract @interface BeforeClassWithInfo
implements Annotation

com.android.tradefed.testtype.junit4.BeforeClassWithInfo


รับประกันคล้ายกับ BeforeClass แต่เมธอดที่มีคำอธิบายประกอบต้องมีพารามิเตอร์ TestInformation ทำงานก่อนเมธอด beforeClass

การใช้ TestInformation.properties() จะช่วยส่งข้อมูลระหว่างบริบทแบบคงที่และแบบไม่คงที่

ตัวอย่าง

@BeforeClassWithInfo public static void beforeClassWithInfo(TestInformation testInfo) { assertNotNull(device); }

ดูเพิ่มเติม