私が書いていないコードを読んでいます。私は次の声明に出くわしました:
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()));
}
});
{ ... }
2番目の内部で呼び出されるメソッドはメソッドであることを理解していExpectations
ます。
- しかし、この種のコード作成をどのように呼びますか?
- 特に 2 番目の をどのように呼びます
{ ... }
か?