cleanup
[taxeditor.git] / eu.etaxonomy.taxeditor.test / src / test / java / eu / etaxonomy / taxeditor / ui / selection / NameSelectionElementTest.java
1 /**
2 * Copyright (C) 2015 EDIT
3 * European Distributed Institute of Taxonomy
4 * http://www.e-taxonomy.eu
5 *
6 * The contents of this file are subject to the Mozilla Public License Version 1.1
7 * See LICENSE.TXT at the top of this package for the full license terms.
8 */
9 package eu.etaxonomy.taxeditor.ui.selection;
10
11 import org.eclipse.swtbot.swt.finder.waits.Conditions;
12 import org.junit.Ignore;
13 import org.junit.Test;
14
15 /**
16 * @author n.hoffmann
17 */
18 @Ignore
19 public class NameSelectionElementTest extends AbstractSelectionElementTest {
20
21 @Override
22 public void setup() {
23 super.setup();
24 bot.menu("General").menu("New").menu("Taxon").click();
25 bot.waitUntil(Conditions.shellIsActive("New Entity"));
26 }
27
28 @Test
29 public void canSelectName() {
30 utils.openFilteredSelection(3, "Choose a name");
31 utils.cancel();
32 }
33 }