cleanup
[taxeditor.git] / eu.etaxonomy.taxeditor.test / src / test / java / eu / etaxonomy / taxeditor / ui / selection / TaxonNodeSelectionElementTest.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.eclipse.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 TaxonNodeSelectionElementTest extends AbstractSelectionElementTest {
20 @Override
21 public void setup() {
22 super.setup();
23 bot.menu("General").menu("New").menu("Taxon").click();
24 bot.waitUntil(Conditions.shellIsActive("New Entity"));
25 }
26
27 @Test
28 public void canSelectTaxon() {
29 utils.openFilteredSelection(1, "Select parent taxon");
30 utils.cancel();
31 }
32 }