blob: 3185fde48c09af0e2b5268116fc86eb358c1fbc2 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 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.printing.PrintDialog;
/**
* 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 {
public Test_org_eclipse_swt_printing_PrintDialog(String name) {
super(name);
}
@Override
protected void setUp() {
super.setUp();
printDialog = new PrintDialog(shell, SWT.NONE);
setDialog(printDialog);
}
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) {
}
}
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;
}