// test@example.com というユーザがログイン中、という状態を作っておく。
TestEnvironment environment =
(TestEnvironment) ApiProxy.getCurrentEnvironment();
environment.setEmail("test@example.com");
// メール送信API をフックするApiProxy.Delegate を適用しておく。
@SuppressWarnings("rawtypes")
Delegate parentDelegate = ApiProxy.getDelegate();
MailDelegate mailDelegate = new MailDelegate();
ApiProxy.setDelegate(mailDelegate);
tester.request.setMethod("POST");
tester.param("title", " テスト用議事録1");