// FIXME : stateChange return null instead of VALID
// assertThat((String) listenerTest.getNotification("stateChange"))
// .isEqualTo("VALID");
final ActionListenerImpl ali = new ActionListenerImpl();
final IconButton button = abb.getIconButton();
button.addActionListener(ali);
final JButton b = (JButton) this.tth.findFirstComponent(JButton.class,
this.jf1);
this.tth.click(b);
Sleeper.SECONDS.sleep(3);
assertThat(ali.getNotifyCount()).isEqualTo(1);
button.removeActionListener(ali);
Sleeper.SECONDS.sleep(3);
ali.reset();
this.tth.click(b);
Sleeper.SECONDS.sleep(3);
assertThat(ali.getNotifyCount()).isEqualTo(0);