blob: 7d7be23ef00ec3f5097f5f6d1c0a466a50d1ce1f [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.ProgressAdapter;
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.ProgressAdapter
*
* @see org.eclipse.swt.browser.ProgressAdapter
*/
public class Test_org_eclipse_swt_browser_ProgressAdapter {
@Test
public void test_Constructor() {
new ProgressAdapter() {};
}
@Test
public void test_changedLorg_eclipse_swt_browser_ProgressEvent() {
Display display = Display.getCurrent();
Shell shell = new Shell(display);
Browser browser = new Browser(shell, SWT.NONE);
browser.addProgressListener(new ProgressAdapter() {});
shell.close();
}
}