当前位置: 首页 > article >正文

【异常记录】Junitmock之InvalidUseOfMatchersException异常

mock之InvalidUseOfMatchersException异常

新手小白对mock一知半解,就开始自测了,被这个InvalidUseOfMatchersException困扰了一晚上。排查了好久,大多数文章都把英文翻译了一遍,但自检无问题。最后发现是,注入的时候注解用成了@InjectMocks导致的,记录一下~
要开始补基础了,希望本文对你有所帮助~

  • 异常信息
org.mockito.exceptions.misusing.InvalidUseOfMatchersException: 
Misplaced argument matcher detected here:

-> at com.baidu.feed.hadoop.mr.bbs.schedule.strategy.BS60AssignWorkerForJobStrategyTest.testAssignWorkerResource(BS60AssignWorkerForJobStrategyTest.java:146)
-> at com.baidu.feed.hadoop.mr.bbs.schedule.strategy.BS60AssignWorkerForJobStrategyTest.testAssignWorkerResource(BS60AssignWorkerForJobStrategyTest.java:146)
-> at com.baidu.feed.hadoop.mr.bbs.schedule.strategy.BS60AssignWorkerForJobStrategyTest.testAssignWorkerResource(BS60AssignWorkerForJobStrategyTest.java:146)

You cannot use argument matchers outside of verification or stubbing.
Examples of correct usage of argument matchers:
    when(mock.get(anyInt())).thenReturn(null);
    doThrow(new RuntimeException()).when(mock).someVoidMethod(anyObject());
    verify(mock).someMethod(contains("foo"))

Also, this error might show up because you use argument matchers with methods that cannot be mocked.
Following methods *cannot* be stubbed/verified: final/private/equals()/hashCode().
Mocking methods declared on non-public parent classes is not supported.

  • 原因:

在mockgetDictMap方法时,错误使用了@InjectMocks注解,导致了InvalidUseOfMatchersException异常

    @InjectMocks
    private DictPropertyService dictPropertyService;

		......
      
		when(dictPropertyService.getDictMap(anyString(),anyString(), anyString())).
        thenReturn(oneJobStandardCoreMap);

http://www.kler.cn/a/396069.html

相关文章:

  • 鸿蒙next ui安全区域适配(刘海屏、摄像头挖空等)
  • 实验6记录网络与故障排除
  • C#从入门到放弃
  • nacos配置中心入门
  • SpringCloud 微服务消息队列灰度方案 (RocketMQ 4.x)
  • 必修 -- 常用笔试题
  • Tomcat 8.5 源码导读
  • 汇编案例 之 HEX到ASCII码的转换
  • 超越传统:探索ONLYOFFICE的革命性办公新纪元
  • 【大模型】prompt实践总结
  • Android setTheme设置透明主题无效
  • ⾃动化运维利器Ansible-基础
  • 如何修改npm包
  • [基础] 003 使用github提交作业
  • 【原创】如何备份和还原Ubuntu系统,非常详细!!
  • LabVIEW中坐标排序与旋转 参见附件snippet程序
  • flink cdc 应用
  • 深度解析 Feign
  • Pytorch无法使用GPU的问题的原因
  • 推荐一款全能网络视频下载工具:闪豆视频下载器
  • 【蓝桥等考C++真题】蓝桥杯等级考试C++组第13级L13真题原题(含答案)-最大的数
  • 我手搓了个“自动生成标书”的开源大模型工具
  • 物联网低功耗广域网LoRa开发(三):Lora人机界面
  • 使用阿里云快速搭建 DataLight 平台
  • C++如何调用Python脚本
  • 24/11/14 算法笔记<强化学习> 马尔可夫