blob: 0b41e3994aa3243818393f77134bf7731f5e61c9 [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 static org.junit.Assert.fail;
import org.eclipse.swt.SWT;
import org.eclipse.swt.printing.PrintDialog;
import org.junit.Before;
import org.junit.Test;
/**
* Automated Test Suite for class org.eclipse.swt.printing.PrintDialog
*
* @see org.eclipse.swt.printing.PrintDialog
*/
public class Test_org_eclipse_swt_printing_PrintDialog extends Test_org_eclipse_swt_widgets_Dialog {
@Override
@Before
public void setUp() {
super.setUp();
printDialog = new PrintDialog(shell, SWT.NONE);
setDialog(printDialog);
}
@Test
public void test_ConstructorLorg_eclipse_swt_widgets_Shell() {
new PrintDialog(shell);
try {
new PrintDialog(null);
fail("No exception thrown for parent == null");
}
catch (IllegalArgumentException e) {
}
}
@Test
public void test_ConstructorLorg_eclipse_swt_widgets_ShellI() {
new PrintDialog(shell, SWT.NONE);
try {
new PrintDialog(null, SWT.NONE);
fail("No exception thrown for parent == null");
}
catch (IllegalArgumentException e) {
}
}
/* custom */
PrintDialog printDialog;
}