我有以下代码:
@Component
public class Wrapper
{
@Resource
private List
@Component
public class StrategyA implements Strategy{...}
@Component
public class StrategyB implements Strategy{...}
我想用Mockito为它创建一个测试.
我写的测试如下:
@InjectMocks
private Wrapper testedObject = new Wrapper ();
// I was hoping that this list will contain both strategies: strategyA and strategyB
@Mock
private List
我在线获得NullPointerException:
filter(strategy -> strategy.isApplicable(id))
,其中声明“策略”列表已初始化但为空.
有没有什么方法Mohito会像春天一样表现出来?将实现“策略”界面的所有实例自动添加到列表中?
顺便说一句我在Wrapper类中没有任何setter,如果可能的话我想以这种方式保留它.
最佳答案
Mockito无法知道你想把一些东西放在List策略中.
原文链接:https://www.f2er.com/spring/432618.html你应该重新考虑一下这样做
@InjectMocks
private Wrapper testedObject = new Wrapper ();
private List