Merge branch 'develop' into remoting-4.0
[taxeditor.git] / eu.etaxonomy.taxeditor.test / src / test / java / eu / etaxonomy / taxeditor / ui / selection / NameSelectionElementTest.java
1 /**
2 *
3 */
4 package eu.etaxonomy.taxeditor.ui.selection;
5
6 import org.eclipse.swtbot.eclipse.finder.waits.Conditions;
7 import org.junit.Ignore;
8 import org.junit.Test;
9
10 /**
11 * @author n.hoffmann
12 *
13 */
14 @Ignore
15 public class NameSelectionElementTest extends AbstractSelectionElementTest {
16 @Override
17 public void setup() {
18 super.setup();
19 bot.menu("General").menu("New").menu("Taxon").click();
20 bot.waitUntil(Conditions.shellIsActive("New Entity"));
21 }
22
23 @Test
24 public void canSelectName() {
25 utils.openFilteredSelection(3, "Choose a name");
26 utils.cancel();
27 }
28 }