@BMRule(
name = "Throw exception on success", targetClass = "AccountService", targetMethod = "forcedMethodLevelFailure",
action = "throw new java.lang.RuntimeException()")
@RunAsClient
public void shouldBeAbleToInjectMethodLevelThrowRule() {
new AccountService().forcedMethodLevelFailure();
}