Home | History | Annotate | Download | only in result

Lines Matching refs:TestLogType

18 import com.android.cts.tradefed.result.TestLog.TestLogType;
34 assertNull(TestLogType.fromDataName(null));
35 assertNull(TestLogType.fromDataName(""));
36 assertNull(TestLogType.fromDataName("kmsg-foo_bar_test"));
38 assertEquals(TestLogType.LOGCAT,
39 TestLogType.fromDataName("logcat-foo_bar_test"));
40 assertEquals(TestLogType.BUGREPORT,
41 TestLogType.fromDataName("bug-foo_bar_test"));
45 assertEquals("logcat", TestLogType.LOGCAT.getAttrValue());
46 assertEquals("bugreport", TestLogType.BUGREPORT.getAttrValue());
51 assertEquals(TestLogType.LOGCAT, log.getLogType());
73 assertEquals(TestLogType.LOGCAT, log.getLogType());
98 TestLog log = TestLog.of(TestLogType.LOGCAT, "http://logs/foo/bar");