*/
public void testIfEnvelopeAllIsMultiTrue2() {
boolean isTestPassed = false;
String script = "if envelope :all :is [\"From\", \"To\"] [\"user@domain\", \"tweety@pie\"] {throwTestException;}";
try {
SieveEnvelopeMailAdapter mail = JUnitUtils.createEnvelopeMail();
mail.setEnvelopeFrom("user@domain");
mail.setEnvelopeTo("user@domain");
JUnitUtils.interpret(mail, script);
} catch (ThrowTestException.TestException e) {
isTestPassed = true;
} catch (ParseException e) {
} catch (SieveException e) {