Skip to main content
summaryrefslogtreecommitdiffstats
blob: 5e2665cc6ca3b9631492d2aca188a7ceb3bff1df (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/**********************************************************************
 * This file is part of "Object Teams Development Tooling"-Software
 *
 * Copyright 2004, 2021 Fraunhofer Gesellschaft, Munich, Germany,
 * for its Fraunhofer Institute and Computer Architecture and Software
 * Technology (FIRST), Berlin, Germany and Technical University Berlin,
 * Germany.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 * $Id$
 *
 * Please visit http://www.eclipse.org/objectteams for updates and contact.
 *
 * Contributors:
 * 	  Fraunhofer FIRST - Initial API and implementation
 * 	  Technical University Berlin - Initial API and implementation
 **********************************************************************/
package org.eclipse.objectteams.otdt.ui.tests.refactoring;

import org.eclipse.objectteams.otdt.tests.FileBasedTest;

/**
 * @author svacina
 */
public class FileBasedRefactoringTest extends FileBasedTest {

    public FileBasedRefactoringTest(String name) {
        super(name);
    }

    @Override
    protected void setUp() throws Exception {
    	this.indexDisabledForTest = false;
    	super.setUp();
    }

    protected String getPluginID() {
        return "org.eclipse.objectteams.otdt.ui.tests.refactoring";
    }
}

Back to the top