InetAddress inetAddress = InetAddress.getLocalHost();
InetSocketAddress inetSocketAddress = new InetSocketAddress(inetAddress, 1);
RuleSet mockRuleSet = mock(RuleSet.class);
when(mockRuleSet.check(
subject,
Operation.ACCESS,
ObjectType.VIRTUALHOST,
ObjectProperties.EMPTY,
inetAddress)).thenThrow(new RuntimeException());