]> source.dussan.org Git - vaadin-framework.git/blob
ee806cb5f759e076ab8fa20c823db30f06f5e6ed
[vaadin-framework.git] /
1 package com.vaadin.tests.server.component.abstractselect;
2
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;
9
10 public class AbstractSelectListenersTest extends
11         AbstractListenerMethodsTestBase {
12     public void testItemSetChangeListenerAddGetRemove() throws Exception {
13         testListenerAddGetRemove(ComboBox.class, ItemSetChangeEvent.class,
14                 ItemSetChangeListener.class);
15     }
16
17     public void testPropertySetChangeListenerAddGetRemove() throws Exception {
18         testListenerAddGetRemove(ComboBox.class, PropertySetChangeEvent.class,
19                 PropertySetChangeListener.class);
20     }
21 }