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