/******************************************************************************* * Copyright (c) 2014 Red Hat Inc.. * 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: * Mickael Istria (Red Hat Inc.) - initial API and implementation *******************************************************************************/ package org.eclipse.swtbot.generator.test; import org.eclipse.swt.SWT; import org.eclipse.swt.custom.CTabFolder; import org.eclipse.swt.custom.CTabItem; import org.eclipse.swt.widgets.Composite; import org.junit.Assert; import org.junit.Test; public class CTabItemActivateTest extends AbstractGeneratorTest { @Override protected void contributeToDialog(Composite container) { CTabFolder cTabFolder = new CTabFolder(container, SWT.NONE); CTabItem item1 = new CTabItem(cTabFolder, SWT.NONE); item1.setText("item1"); //$NON-NLS-1$ CTabItem item2 = new CTabItem(cTabFolder, SWT.NONE); item2.setText("item2"); //$NON-NLS-1$ } @Test public void testActivateCTabItem() { bot.cTabItem("item2").activate(); flushEvents(); Assert.assertEquals( "bot.cTabItem(\"item2\").activate();", //$NON-NLS-1$ recorderShellBot().text().getText().trim()); } }