@Test
public void ユーザのプロフィール画像の取得() throws NullPointerException,
IllegalArgumentException, IOException, ServletException {
// ユーザに対応するProfile を準備する。
Profile profile = new Profile();
profile.setKey(Datastore.createKey(Profile.class, "1"));
profile.setProfileURL("dummy_url");
Datastore.put(profile);
tester.param("user", "1");
tester.start(PATH);
assertThat(
"ImagesController のインスタンスが使用される",