Mockito 无效使用匹配器例外



我有以下一段代码,我正在使用Mockito编写单元测试:

      while (results.hasMore()) {
            found = true;
            SearchResult searchResult = (SearchResult) results.next();
            Attributes attributes = searchResult.getAttributes();
            Attribute attr = attributes.get(LdapAttribute.CUSTOMER_GUID.getValue());
            setAttribute(attr);
            if (getAttribute() != null && cust.getCstCustGuid() == null) 
                cust.setCstCustGuid((String) attr.get());
      }

单元测试存根代码:

    Mockito.doReturn(mockCustomer).when(ldap).getLDAPCustomer();
    Mockito.doReturn(mockCtx).when(ldap).getInitialDirContext();
    Mockito.doNothing().when(ldap).setAttribute(Mockito.any(Attribute.class));
    Mockito.doReturn(mockAttribute).when(ldap).getAttribute();
    Mockito.doReturn(mockSearchControls).when(ldap).getSearchControls();
    Mockito.doNothing().when(mockSearchControls).setSearchScope(Mockito.anyInt());
    Mockito.when(mockCtx.search(Mockito.anyString(), Mockito.anyString(), Mockito.any(SearchControls.class))).thenReturn(mockResults);
    Mockito.when(mockResults.hasMore()).thenReturn(true).thenReturn(false);
    Mockito.when(mockResults.next()).thenReturn(mockSearchResults);
    Mockito.when(mockSearchResults.getAttributes()).thenReturn(mockAttributes);
    Mockito.when(mockAttributes.get(Mockito.anyString())).thenReturn(mockAttribute);
    Mockito.when(mockAttribute.get()).thenReturn(Mockito.anyObject());
    Mockito.when(mockCustomer.getCstCustGuid()).thenReturn(Mockito.anyString());
    Mockito.doNothing().when(mockCustomer).setCstCustGuid(Mockito.anyString());

我在行中得到InvalidUseOfMatchers例外:

 Mockito.when(mockCustomer.getCstCustGuid()).thenReturn(Mockito.anyString());

请帮忙。

您不能在thenReturn()中使用Mockito.anyString()。您只能在使用时使用它 Mockito.when()Mockito.verify() .示例:Mockito.when(mockCustomer.getSomething(Mockito.anyString())).thenReturn(something);

对于您的问题,您应该将Mockito.when(mockCustomer.getCstCustGuid()).thenReturn(Mockito.anyString());行替换为

Mockito.when(mockCustomer.getCstCustGuid()).thenReturn("");

Mockito.when(mockCustomer.getCstCustGuid()).thenReturn(Mockito.mock(String.class));

相关内容

  • 没有找到相关文章

最新更新