blob: 5fcc0a5a736be50e69e3b68326b7ded76a705b60 [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 junit.framework.*;
import junit.textui.*;
import org.eclipse.swt.*;
import org.eclipse.swt.widgets.*;
/**
* Automated Test Suite for class org.eclipse.swt.widgets.ToolItem
*
* @see org.eclipse.swt.widgets.ToolItem
*/
public class Test_org_eclipse_swt_widgets_ToolItem extends Test_org_eclipse_swt_widgets_Item {
public Test_org_eclipse_swt_widgets_ToolItem(String name) {
super(name);
}
public static void main(String[] args) {
TestRunner.run(suite());
}
@Override
protected void setUp() {
super.setUp();
toolBar = new ToolBar(shell, 0);
toolItem = new ToolItem(toolBar, 0);
setWidget(toolItem);
}
public void test_ConstructorLorg_eclipse_swt_widgets_ToolBarI() {
try {
new ToolItem(null, SWT.NULL);
fail("No exception thrown for parent == null");
}
catch (IllegalArgumentException e) {
}
}
public void test_getToolTipText() {
toolItem.setToolTipText("fred");
assertTrue(":a: ", toolItem.getToolTipText().equals("fred"));
toolItem.setToolTipText("fredttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttt");
assertTrue(":a: ", toolItem.getToolTipText().equals("fredttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttt"));
}
@Override
public void test_setImageLorg_eclipse_swt_graphics_Image() {
warnUnimpl("Test test_setImageLorg_eclipse_swt_graphics_Image not written");
}
@Override
public void test_setTextLjava_lang_String() {
warnUnimpl("Test test_setTextLjava_lang_String not written");
}
public static Test suite() {
TestSuite suite = new TestSuite();
java.util.Vector<String> methodNames = methodNames();
java.util.Enumeration<String> e = methodNames.elements();
while (e.hasMoreElements()) {
suite.addTest(new Test_org_eclipse_swt_widgets_ToolItem(e.nextElement()));
}
return suite;
}
public static java.util.Vector<String> methodNames() {
java.util.Vector<String> methodNames = new java.util.Vector<String>();
methodNames.addElement("test_ConstructorLorg_eclipse_swt_widgets_ToolBarI");
methodNames.addElement("test_getToolTipText");
methodNames.addElement("test_setImageLorg_eclipse_swt_graphics_Image");
methodNames.addElement("test_setTextLjava_lang_String");
methodNames.addAll(Test_org_eclipse_swt_widgets_Item.methodNames()); // add superclass method names
return methodNames;
}
@Override
protected void runTest() throws Throwable {
if (getName().equals("test_ConstructorLorg_eclipse_swt_widgets_ToolBarI")) test_ConstructorLorg_eclipse_swt_widgets_ToolBarI();
else if (getName().equals("test_getToolTipText")) test_getToolTipText();
else if (getName().equals("test_setImageLorg_eclipse_swt_graphics_Image")) test_setImageLorg_eclipse_swt_graphics_Image();
else if (getName().equals("test_setTextLjava_lang_String")) test_setTextLjava_lang_String();
else super.runTest();
}
/* custom */
ToolBar toolBar;
ToolItem toolItem;
}