new Expectations() {{
someMethod.getLocalObj().getValue((SomeClass)any);
returns(1);
times=1;
request.doSomething().setTransaction((null)any); // HERE****how to match ??
times=0;
}};
您好。我正在尝试匹配一个将变量设置为null的方法。我怎么能在JMockit中做到这一点?
感谢。