2627282930313233
public class PanoramaMailModule extends AbstractAnnotatedModule { @Service( id="MailStartup" ) public Executable getMailStartupService() { Executable startup = new MailStartup(); return startup; }
134135136137138139140141142143144
verifyControls(); } public void testFailure() { Executable f = new Executable() { public void execute() throws Exception { throw new ApplicationRuntimeException("Failure!"); }
132133134135136137138139140141142