@Test
public void testOnPageSizeChange() throws Exception {
service.init(initContext);
service.onPageSizeChange(new EditorPageSizeChangeEvent(5));
verify(dispatcher, times(2)).execute(actionCaptor.capture(),
resultCaptor.capture());
GetTransUnitList getTransUnitList = actionCaptor.getValue();
assertThat(getTransUnitList.getCount(), Matchers.equalTo(5));