cleanup
[taxeditor.git] / eu.etaxonomy.taxeditor.test / src / test / java / eu / etaxonomy / taxeditor / ui / selection / ClassificationSelectionElementTest.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 * This test will only test the selection element itself. The test may have to start other
17 * dialogs open windows before to get at the selection element. Any errors on the way
18 * should be handled by different tests.
19 *
20 * @author n.hoffmann
21 */
22 @Ignore
23 public class ClassificationSelectionElementTest extends AbstractSelectionElementTest{
24
25 @Override
26 public void setup() {
27 super.setup();
28 bot.menu("General").menu("New").menu("Taxon").click();
29 bot.waitUntil(Conditions.shellIsActive("New Entity"));
30 }
31
32 @Test
33 public void canSelectClassification() {
34 utils.openFilteredSelection(0, "Choose a Classification");
35 utils.cancel();
36 }
37 }