You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When completing on annotation like JUnit's @RunWith, proposals should be filtered to Types and Static Members that are assignable to Runner.
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@Inheritedpublic @interface RunWith {
/** * @return a Runner class (must have a constructor that takes a single Class to run) */Class<? extendsRunner> value();
}
importorg.junit.runner.RunWithimportorg.mockito.runners.MockitoJUnitRunner@RunWith(MockitoJUnitRunner) // propose only classes and static final fields with matching type hereclassSomeTests {
}
The text was updated successfully, but these errors were encountered:
When completing on annotation like JUnit's
@RunWith
, proposals should be filtered to Types and Static Members that are assignable toRunner
.The text was updated successfully, but these errors were encountered: