1 package com.vaadin.tests.server.component.abstractselect;
3 import com.vaadin.data.Container.ItemSetChangeEvent;
4 import com.vaadin.data.Container.ItemSetChangeListener;
5 import com.vaadin.data.Container.PropertySetChangeEvent;
6 import com.vaadin.data.Container.PropertySetChangeListener;
7 import com.vaadin.tests.server.component.AbstractListenerMethodsTestBase;
8 import com.vaadin.ui.ComboBox;
10 public class AbstractSelectListenersTest extends
11 AbstractListenerMethodsTestBase {
12 public void testItemSetChangeListenerAddGetRemove() throws Exception {
13 testListenerAddGetRemove(ComboBox.class, ItemSetChangeEvent.class,
14 ItemSetChangeListener.class);
17 public void testPropertySetChangeListenerAddGetRemove() throws Exception {
18 testListenerAddGetRemove(ComboBox.class, PropertySetChangeEvent.class,
19 PropertySetChangeListener.class);