public class MemoServiceTest extends AppEngineTestCase {
@Test
public void 特定の議事録にメモを追加できる() {
// test@example.com というユーザがログイン中、という状態を作っておく。
TestEnvironment environment =
(TestEnvironment) ApiProxy.getCurrentEnvironment();
environment.setEmail("test@example.com");
Key minutesKey = MinutesService.put(" テスト用議事録1");
int before = tester.count(Memo.class);
Key key = MemoService.put(minutesKey, " メモ1");
int after = tester.count(Memo.class);
assertThat("Memo が一件増える", after, is(before + 1));