forgot to add in last commit
[taxeditor.git] / eu.etaxonomy.taxeditor.test / src / test / java / eu / etaxonomy / taxeditor / operations / OperationTestBase.java
1 // $Id$
2 /**
3 * Copyright (C) 2007 EDIT
4 * European Distributed Institute of Taxonomy
5 * http://www.e-taxonomy.eu
6 *
7 * The contents of this file are subject to the Mozilla Public License Version 1.1
8 * See LICENSE.TXT at the top of this package for the full license terms.
9 */
10
11 package eu.etaxonomy.taxeditor.operations;
12
13 import org.eclipse.core.commands.operations.IUndoContext;
14 import org.eclipse.core.runtime.IAdaptable;
15 import org.eclipse.core.runtime.IProgressMonitor;
16 import org.eclipse.core.runtime.NullProgressMonitor;
17
18 import eu.etaxonomy.taxeditor.httpinvoker.BaseRemotingTest;
19 import eu.etaxonomy.taxeditor.operation.AbstractPostOperation;
20 import eu.etaxonomy.taxeditor.operation.IPostOperationEnabled;
21 import eu.etaxonomy.taxeditor.session.ICdmEntitySessionEnabled;
22
23 /**
24 * @author n.hoffmann
25 * @created 15.04.2009
26 * @version 1.0
27 */
28 public abstract class OperationTestBase extends BaseRemotingTest {
29
30 public static final IUndoContext undoContext = null;
31
32 public static final IProgressMonitor monitor = new NullProgressMonitor();
33 public static final IAdaptable info = null;
34 public static final IPostOperationEnabled postOperation = null;
35 public static final ICdmEntitySessionEnabled cdmEntitySessionEnabled = null;
36
37 protected static AbstractPostOperation operation;
38
39 }