Home
last modified time | relevance | path

Searched refs:shouldTestRun (Results 1 – 3 of 3) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/util/
DTestFilterHelper.java159 public boolean shouldTestRun(AnnotatedElement annotatedElement) { in shouldTestRun() method in TestFilterHelper
160 return shouldTestRun(Arrays.asList(annotatedElement.getAnnotations())); in shouldTestRun()
169 public boolean shouldTestRun(Description desc) { in shouldTestRun() method in TestFilterHelper
170 return shouldTestRun(desc.getAnnotations()); in shouldTestRun()
176 private boolean shouldTestRun(Collection<Annotation> annotationsList) { in shouldTestRun() method in TestFilterHelper
240 if (!shouldTestRun(method)) { in shouldRun()
305 if (!shouldTestRun(annotations)) { in shouldRun()
/tools/tradefederation/core/javatests/com/android/tradefed/testtype/
DHostTestTest.java1166 assertTrue(mHostTest.shouldTestRun(SuccessTestCase.class)); in testRun_shouldTestRun_Success()
1177 assertTrue(mHostTest.shouldTestRun(AnotherTestCase.class)); in testRun_shouldTestRunMulti_Success()
1187 assertFalse(mHostTest.shouldTestRun(SuccessTestCase.class)); in testRun_shouldNotRun()
1197 assertFalse(mHostTest.shouldTestRun(SuccessTestCase.class)); in testRun_shouldNotRunMulti()
1202 assertFalse(mHostTest.shouldTestRun(SuccessTestCase.class)); in testRun_shouldNotRunMulti()
1212 assertTrue(mHostTest.shouldTestRun(SuccessTestCase.class)); in testRun_shouldRun_exclude()
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/
DHostTest.java1216 protected boolean shouldTestRun(AnnotatedElement annotatedElement) { in shouldTestRun() method in HostTest
1217 return mFilterHelper.shouldTestRun(annotatedElement); in shouldTestRun()