* rest of javadoc inherited
*/
protected void doTestEnable(TestData data,
String testName,
boolean expected) throws Exception {
ODOMSelectionManager selManager = data.getSelectionManager();
ODOMESCountingListener listener = new ODOMESCountingListener();
selManager.addSelectionListener(listener, null);
super.doTestEnable(data, testName, expected);
assertEquals("No selection event was expected.",
numEnableSelectionsExpected, listener.getCount());
selManager.removeSelectionListener(listener, null);
}