Project

General

Profile

Download (849 Bytes) Statistics
| Branch: | Tag: | Revision:
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
 */
19
@Ignore
20
public class NameSelectionElementTest extends AbstractSelectionElementTest {
21

    
22
    @Override
23
	public void setup() {
24
		super.setup();
25
		bot.menu("General").menu("New").menu("Taxon").click();
26
		bot.waitUntil(Conditions.shellIsActive("New Entity"));
27
	}
28

    
29
	@Test
30
	public void canSelectName() {
31
		utils.openFilteredSelection(3, "Choose a name");
32
		utils.cancel();
33
	}
34
}
(3-3/5)