blob: e19bc9e5270520b7047a7ab5ede6077923e8f0c1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011, 2013 RĂ¼diger Herrmann 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:
* RĂ¼diger Herrmann - initial API and implementation
* EclipseSource - ongoing development
******************************************************************************/
package org.eclipse.rap.tools.launch.rwt.internal.tab;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;
import org.eclipse.rap.tools.launch.rwt.internal.tab.ProjectSection;
import org.eclipse.swt.widgets.Shell;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
public class ProjectSection_Test {
private Shell shell;
private ProjectSection projectSection;
@Before
public void setUp() throws Exception {
projectSection = new ProjectSection();
shell = new Shell();
}
@After
public void tearDown() throws Exception {
shell.dispose();
}
@Test
public void testCreateControl_callsSetControl() {
projectSection.createControl( shell );
assertNotNull( projectSection.getControl() );
}
@Test
public void testGetName() {
String name = projectSection.getName();
assertNotNull( name );
assertTrue( name.length() > 0 );
}
}