blob: 69133392d6d18f8286714cb0fc5374f2f65bc69b [file] [log] [blame]
/*******************************************************************************
* 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
*******************************************************************************/
package org.eclipse.swt.tests.junit;
import org.eclipse.swt.SWT;
import org.eclipse.swt.browser.Browser;
import org.eclipse.swt.browser.VisibilityWindowAdapter;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
import org.junit.Test;
/**
* Automated Test Suite for class org.eclipse.swt.browser.VisibilityWindowAdapter
*
* @see org.eclipse.swt.browser.VisibilityWindowAdapter
*/
public class Test_org_eclipse_swt_browser_VisibilityWindowAdapter {
@Test
public void test_Constructor() {
new VisibilityWindowAdapter() {};
}
@Test
public void test_hideLorg_eclipse_swt_browser_WindowEvent() {
Display display = Display.getCurrent();
Shell shell = new Shell(display);
Browser browser = new Browser(shell, SWT.NONE);
browser.addVisibilityWindowListener(new VisibilityWindowAdapter(){});
shell.close();
}
}