blob: 60be41db76994a538444d4314dbb7fb0cfac0715 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 Brad Reynolds and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Brad Reynolds - initial API and implementation
* Matthew Hall - bug 246625, 194734
******************************************************************************/
package org.eclipse.core.tests.internal.databinding.beans;
import java.beans.PropertyDescriptor;
import junit.framework.TestCase;
import org.eclipse.core.databinding.beans.BeansObservables;
import org.eclipse.core.databinding.observable.set.IObservableSet;
import org.eclipse.core.internal.databinding.beans.BeanObservableSetDecorator;
import org.eclipse.jface.databinding.swt.SWTObservables;
import org.eclipse.swt.widgets.Display;
/**
* @since 3.3
*/
public class BeanObservableSetDecoratorTest extends TestCase {
private PropertyDescriptor propertyDescriptor;
private IObservableSet observableSet;
private BeanObservableSetDecorator decorator;
private Bean bean;
protected void setUp() throws Exception {
super.setUp();
bean = new Bean();
propertyDescriptor = new PropertyDescriptor("set", Bean.class);
observableSet = BeansObservables.observeSet(SWTObservables
.getRealm(Display.getDefault()), bean, "set");
decorator = new BeanObservableSetDecorator(observableSet,
propertyDescriptor);
}
public void testGetDecorated() throws Exception {
assertSame(observableSet, decorator.getDecorated());
}
public void testGetObserved() throws Exception {
assertSame(bean, decorator.getObserved());
}
public void testGetPropertyDescriptor() throws Exception {
assertSame(propertyDescriptor, decorator.getPropertyDescriptor());
}
}