blob: 481c74b0d1d1db3eed4f66119b942dfa9250d625 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006 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
* Ashley Cambrell - bug 198904
******************************************************************************/
package org.eclipse.jface.tests.internal.databinding.swt;
import org.eclipse.jface.databinding.conformance.util.ValueChangeEventTracker;
import org.eclipse.jface.internal.databinding.swt.SWTProperties;
import org.eclipse.jface.internal.databinding.swt.SpinnerObservableValue;
import org.eclipse.jface.tests.databinding.AbstractSWTTestCase;
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Spinner;
/**
* @since 3.2
*
*/
public class SpinnerObservableValueTest extends AbstractSWTTestCase {
public void testDispose() throws Exception {
Spinner spinner = new Spinner(getShell(), SWT.NONE);
SpinnerObservableValue observableValue = new SpinnerObservableValue(
spinner, SWTProperties.SELECTION);
ValueChangeEventTracker testCounterValueChangeListener = new ValueChangeEventTracker();
observableValue.addValueChangeListener(testCounterValueChangeListener);
assertEquals(0, spinner.getSelection());
assertEquals(0, ((Integer) observableValue.getValue()).intValue());
Integer expected1 = new Integer(1);
spinner.setSelection(expected1.intValue());
// assertEquals(1, testCounterValueChangeListener.counter);
assertEquals(expected1.intValue(), spinner.getSelection());
assertEquals(expected1, observableValue.getValue());
observableValue.dispose();
Integer expected2 = new Integer(2);
spinner.setSelection(expected2.intValue());
// assertEquals(1, testCounterValueChangeListener.counter);
assertEquals(expected2.intValue(), spinner.getSelection());
}
}