DeviceJUnit4ClassRunner.TestLogData
public
static
class
DeviceJUnit4ClassRunner.TestLogData
extends ExternalResource
java.lang.Object
|
↳ |
org.junit.rules.ExternalResource
|
|
↳ |
com.android.tradefed.testtype.DeviceJUnit4ClassRunner.TestLogData
|
การใช้งาน ExternalResource
และ TestRule
กฎนี้อนุญาตให้บันทึกบันทึก
ระหว่างกรอบการทดสอบ (ภายใน @Test) ช่วยรับประกันว่ารายการบันทึกจะถูกล้างระหว่างการทดสอบ
เพื่อให้ระบบนำออบเจ็กต์กฎเดียวกันนี้กลับมาใช้ใหม่ได้
Example:
@Rule
public TestLogData logs = new TestLogData();
@Test
public void testFoo() {
logs.addTestLog("logcat", LogDataType.LOGCAT, new FileInputStreamSource(logcatFile));
}
@Test
public void testFoo2() {
logs.addTestLog("logcat2", LogDataType.LOGCAT, new FileInputStreamSource(logcatFile2));
}
สรุป
ช่างก่อสร้างสาธารณะ
ข้อมูลบันทึกการทดสอบ
public TestLogData ()
วิธีการสาธารณะ
public final void addTestLog (String dataName,
LogDataType dataType,
InputStreamSource dataStream)
พารามิเตอร์ |
dataName |
String |
dataType |
LogDataType |
dataStream |
InputStreamSource |
ใช้
public Statement apply (Statement base,
Description description)
พารามิเตอร์ |
base |
Statement |
description |
Description |