/******************************************************************************* * Copyright (c) 2000, 2015 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 * Red Hat Inc. - Adapt to JUnit 4. *******************************************************************************/ package org.eclipse.swt.tests.junit; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertTrue; import org.eclipse.swt.accessibility.AccessibleEvent; import org.eclipse.swt.widgets.Shell; import org.junit.After; import org.junit.Before; import org.junit.Test; /** * Automated Test Suite for class org.eclipse.swt.accessibility.AccessibleEvent * * @see org.eclipse.swt.accessibility.AccessibleEvent */ public class Test_org_eclipse_swt_accessibility_AccessibleEvent { @Before public void setUp() { shell = new Shell(); } @After public void tearDown() { shell.dispose(); } @Test 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); } @Test public void test_toString() { AccessibleEvent event = new AccessibleEvent(shell.getAccessible()); assertNotNull(event.toString()); assertTrue(event.toString().length() > 0); } /* custom */ public Shell shell; }