blob: 2f85bf5b378fb8a9991b57dac92b204cd20850c9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2013 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - Initial API and implementation
*******************************************************************************/
package org.eclipse.wst.server.ui.tests.wizard;
import junit.framework.TestCase;
import junit.framework.TestSuite;
import org.eclipse.jface.dialogs.IMessageProvider;
import org.eclipse.wst.server.ui.tests.impl.TestWizardHandle;
import org.eclipse.wst.server.ui.wizard.IWizardHandle;
public class IWizardHandleTestCase extends TestCase {
protected static IWizardHandle wizardHandle;
private final String sampleMessage = "Sample message";
private final int sampleMessageType = IMessageProvider.ERROR;
// This test suite ensures the test methods are run in order
public static TestSuite getOrderedTests() {
TestSuite mySuite = new TestSuite();
mySuite.addTest(TestSuite.createTest(IWizardHandleTestCase.class, "test00Create"));
mySuite.addTest(TestSuite.createTest(IWizardHandleTestCase.class, "test01Run"));
mySuite.addTest(TestSuite.createTest(IWizardHandleTestCase.class, "test02SetDescription"));
mySuite.addTest(TestSuite.createTest(IWizardHandleTestCase.class, "test03SetImageDescriptor"));
mySuite.addTest(TestSuite.createTest(IWizardHandleTestCase.class, "test04SetMessage"));
mySuite.addTest(TestSuite.createTest(IWizardHandleTestCase.class, "test05SetTitle"));
mySuite.addTest(TestSuite.createTest(IWizardHandleTestCase.class, "test06Update"));
mySuite.addTest(TestSuite.createTest(IWizardHandleTestCase.class, "test07GetMessage"));
mySuite.addTest(TestSuite.createTest(IWizardHandleTestCase.class, "test08GetMessageType"));
return mySuite;
}
public void test00Create() {
wizardHandle = new TestWizardHandle();
}
public void test01Run() throws Exception {
wizardHandle.run(true, true, null);
}
public void test02SetDescription() {
wizardHandle.setDescription(null);
}
public void test03SetImageDescriptor() {
wizardHandle.setImageDescriptor(null);
}
public void test04SetMessage() {
wizardHandle.setMessage(sampleMessage, sampleMessageType);
}
public void test05SetTitle() {
wizardHandle.setTitle(null);
}
public void test06Update() {
wizardHandle.update();
}
public void test07GetMessage() {
assertEquals(sampleMessage, wizardHandle.getMessage());
}
public void test08GetMessageType() {
assertEquals(sampleMessageType, wizardHandle.getMessageType());
}
}