blob: 06925d2d36ec7f1164df337ba4c7f65f3c658128 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.swt.tests.junit;
import junit.framework.TestCase;
import org.eclipse.swt.accessibility.AccessibleEvent;
import org.eclipse.swt.widgets.Shell;
/**
* Automated Test Suite for class org.eclipse.swt.accessibility.AccessibleEvent
*
* @see org.eclipse.swt.accessibility.AccessibleEvent
*/
public class Test_org_eclipse_swt_accessibility_AccessibleEvent extends TestCase {
@Override
protected void setUp() {
shell = new Shell();
}
@Override
protected void tearDown() {
shell.dispose();
}
public void test_ConstructorLjava_lang_Object() {
// The source object should be a widget's accessible.
AccessibleEvent event = new AccessibleEvent(shell.getAccessible());
assertNotNull(event);
// Test with some other object also.
event = new AccessibleEvent(new Integer(5));
assertNotNull(event);
}
public void test_toString() {
AccessibleEvent event = new AccessibleEvent(shell.getAccessible());
assertNotNull(event.toString());
assertTrue(event.toString().length() > 0);
}
/* custom */
public Shell shell;
}