本文主要是介绍unit test use EasyMock:Possible matches are marked with (+1):,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
某次写单元测试出现的一个小问题,针对某一个返回值为void的方法,程序中出现多次。
源代码语句
reservationRepository.save(EasyMock.isA(Reservation.class));
reservationRepository.save(EasyMock.isA(Reservation.class));
不同的地方出现两次调用这个方法,上面写法一直会出现Possible matches are marked with (+1):这个错误。
之后换为下面的写法:
reservationRepository.save(EasyMock.isA(Reservation.class));
这篇关于unit test use EasyMock:Possible matches are marked with (+1):的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!