minor
[taxeditor.git] / eu.etaxonomy.taxeditor.test / src / test / java / eu / etaxonomy / taxeditor / ui / selection / AbstractSelectionElementTest.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.junit.After;
12
13 import eu.etaxonomy.taxeditor.test.AbstractEditorTest;
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 */
23 public abstract class AbstractSelectionElementTest extends AbstractEditorTest{
24
25 @After
26 public void tearDown() {
27 utils.cancel();
28 }
29
30 }