*/
public void testIfAddressAllIsMultiFalse1() {
boolean isTestPassed = false;
String script = "if address :all :is [\"From\", \"To\"] \"user@domain\" {throwTestException;}";
try {
SieveMailAdapter mail = (SieveMailAdapter) JUnitUtils.createMail();
mail.getMessage().addHeader("From", "bugs@bunny");
mail.getMessage().addHeader("To", "bugs@bunny");
JUnitUtils.interpret(mail, script);
isTestPassed = true;
} catch (MessagingException e) {
} catch (ThrowTestException.TestException e) {
} catch (ParseException e) {