verify(repository);
}
@Test
public void getLimitedList() {
Tag tag1 = new TagImpl("1", "tag");
Tag tag2 = new TagImpl("2", "fakeTag");
List<Tag> tags = new ArrayList<Tag>();
tags.add(tag1);
tags.add(tag2);
final int pageSize = 10;
expect(repository.getCountAll()).andReturn(2);