Я использую org.springframework.security.core.Authentication
, у которого есть метод:
Collection<? extends GrantedAuthority> getAuthorities();
Я хочу издеваться, как показано ниже:
when(authentication.getAuthorities()).thenReturn(grantedAuthorities);
со сбором полномочий:
Collection<SimpleGrantedAuthority> grantedAuthorities = Lists.newArrayList(
new SimpleGrantedAuthority(AuthoritiesConstants.USER));
И я использую org.springframework.security.core.authority.SimpleGrantedAuthority
, который расширяет GrantedAuthority
И Intellij выдает мне ниже ошибку компиляции:
Cannot resolve method 'thenReturn(java.util.Collection<org.spring.security.core.authority.SimpleGrantedAuthority>)'
Я использую метод Mockito 2.15.0
и thenReturn()
из этого:
OngoingStubbing<T> thenReturn(T value);
В чем проблема?