Searched refs:shouldTestRun (Results 1 – 3 of 3) sorted by relevance
159 public boolean shouldTestRun(AnnotatedElement annotatedElement) { in shouldTestRun() method in TestFilterHelper160 return shouldTestRun(Arrays.asList(annotatedElement.getAnnotations())); in shouldTestRun()169 public boolean shouldTestRun(Description desc) { in shouldTestRun() method in TestFilterHelper170 return shouldTestRun(desc.getAnnotations()); in shouldTestRun()176 private boolean shouldTestRun(Collection<Annotation> annotationsList) { in shouldTestRun() method in TestFilterHelper240 if (!shouldTestRun(method)) { in shouldRun()305 if (!shouldTestRun(annotations)) { in shouldRun()
1166 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()
1216 protected boolean shouldTestRun(AnnotatedElement annotatedElement) { in shouldTestRun() method in HostTest1217 return mFilterHelper.shouldTestRun(annotatedElement); in shouldTestRun()