ParameterResolutionException单元测试方法中添加了参数,这是不允许的

  • Post author:
  • Post category:其他


     @Test
     void subStock(Integer specsId,Integer quantity){
         PhoneService.subStock(1,2);

     }

单元测试方法中添加了参数,这是不允许的,有以下报错

org.junit.jupiter.api.extension.ParameterResolutionException: No ParameterResolver registered for parameter [java.lang.Integer specsId] in method [void com.shouthwind.phonestoredemo.service.impl.PhoneServiceRepositoryImplTest.subStock(java.lang.Integer,java.lang.Integer)].

改正

     @Test
     void subStock(){
         PhoneService.subStock(1,2);

     }



版权声明:本文为weixin_55806809原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。