assertEquals(COLUMN_INDEX, columnIndexCaptor.getValue());
assertEquals(tableCell, cellCaptor.getValue());
assertEquals(adapterFactory, adapterFactoryCaptor.getValue());
// notify the adapter
Notification notification = mock(Notification.class);
when(notification.getNotifier()).thenReturn(item2);
adapter2.notifyChanged(notification);
verify(cellFactory, times(3)).applyTableItemProviderStyle(itemCaptor.capture(), columnIndexCaptor.capture(), cellCaptor.capture(),
adapterFactoryCaptor.capture());
assertEquals(item2, itemCaptor.getValue());