blob: 655c10f81073b49a465da64477d066186c769180 [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.*;
import org.eclipse.swt.custom.*;
import junit.framework.*;
import junit.textui.*;
/**
* Automated Test Suite for class org.eclipse.swt.custom.CTabItem
*
* @see org.eclipse.swt.custom.CTabItem
*/
public class Test_org_eclipse_swt_custom_CTabItem extends Test_org_eclipse_swt_widgets_Item {
CTabFolder cTabFolder;
CTabItem cTabItem;
public Test_org_eclipse_swt_custom_CTabItem(String name) {
super(name);
}
public static void main(String[] args) {
TestRunner.run(suite());
}
@Override
protected void setUp() {
super.setUp();
cTabFolder = new CTabFolder(shell, SWT.NONE);
cTabItem = new CTabItem(cTabFolder, SWT.NONE);
setWidget(cTabItem);
}
@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_custom_CTabItem(e.nextElement()));
}
return suite;
}
public static java.util.Vector<String> methodNames() {
java.util.Vector<String> methodNames = new java.util.Vector<String>();
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_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();
}
}