Project

General

Profile

Download (574 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
 * 
3
 */
4
package eu.etaxonomy.taxeditor.ui.selection;
5

    
6
import org.eclipse.swtbot.eclipse.finder.waits.Conditions;
7
import org.junit.Test;
8

    
9
/**
10
 * @author n.hoffmann
11
 *
12
 */
13
public class TaxonNodeSelectionElementTest extends AbstractSelectionElementTest {
14
	@Override
15
	public void setup() {
16
		super.setup();
17
		bot.menu("General").menu("New").menu("Taxon").click();
18
		bot.waitUntil(Conditions.shellIsActive("New Entity"));
19
	}
20
	
21
	@Test
22
	public void canSelectTaxon() {
23
		utils.openFilteredSelection(1, "Select parent taxon");
24
		utils.cancel();
25
	}
26
	
27
}
(4-4/5)