我正在阅读我没有编写的代码。我偶然发现了以下声明:
context.checking(new org.jmock.Expectations() {
{
allowing(habilitationManager).hasRole(RoleDtoEnum.ROLE_NEWS);
will(returnValue(true));
allowing(habilitationManager).hasRole(RoleDtoEnum.ROLE_STAT);
will(returnValue(true));
allowing(habilitationManager).getUser();
will(returnValue(getUserMock()));
oneOf(parametreService).getParametre(PPP);
will(returnValue(getMockPPP()));
}
});
我知道第二个内部调用的方法{ ... }
是Expectations
方法。
- 但是你怎么称呼这种代码写作?
- 特别是你怎么称呼第二个
{ ... }
?