use of org.jmock.internal.ReturnDefaultValueAction in project lispflowmapping by opendaylight.
the class BaseExpectations method before.
@Before
public void before() throws Exception {
context = new Mockery() {
{
setImposteriser(ClassImposteriser.INSTANCE);
// otherwise we get errors on the finalizer thread:
setThreadingPolicy(synchroniser);
}
};
defaultAction = new ReturnDefaultValueAction(ClassImposteriser.INSTANCE);
}
Aggregations