* Test execute of ActionAbsent. Should throw a NoSuchMethodException.
*/
public void testExecuteActionAbsent() {
boolean isTestPassed = false;
Mail aMail = new MailImpl();
MailetContext aMailetContext = new MockMailetContext();
Action action = new ActionAbsent();
try {
ActionDispatcher.getInstance().execute(action, aMail,
aMailetContext);
} catch (NoSuchMethodException e) {