Merge branch 'develop' into remoting-4.0
[taxeditor.git] / eu.etaxonomy.taxeditor.test / src / test / java / eu / etaxonomy / taxeditor / ui / selection / ClassificationSelectionElementTest.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 * This test will only test the selection element itself. The test may have to start other
12 * dialogs open windows before to get at the selection element. Any errors on the way
13 * should be handled by different tests.
14 *
15 * @author n.hoffmann
16 *
17 */
18 @Ignore
19 public class ClassificationSelectionElementTest 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 canSelectClassification() {
29 utils.openFilteredSelection(0, "Choose a Classification");
30 utils.cancel();
31 }
32 }