Person person = new PersonImpl();
List<Person> people = Lists.newArrayList(person);
RestfulCollection<Person> data = new RestfulCollection<Person>(people);
// TODO: We aren't passing john.doe to the service yet.
expect(personService.getPeople(
eq(ImmutableSet.of(new UserId(UserId.Type.userId, "jane.doe"))),
eq(new GroupId(GroupId.Type.self, null)), eq(DEFAULT_OPTIONS),
eq(DEFAULT_FIELDS), eq(token)))
.andReturn(ImmediateFuture.newInstance(data));
replay();