blob: 20324ad5fb67e2e9c449b01473d3fb55447bc482 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 IBM Corporation and others.
*
* 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
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.testplugin;
import junit.extensions.TestSetup;
import junit.framework.Test;
import org.eclipse.jdt.core.JavaCore;
import org.eclipse.jdt.internal.ui.JavaPlugin;
public class TestOptionsSetup extends TestSetup {
public TestOptionsSetup(Test test) {
super(test);
}
@Override
protected void setUp() throws Exception {
super.setUp();
JavaCore.setOptions(TestOptions.getDefaultOptions());
TestOptions.initializeCodeGenerationOptions();
// Use load since restore doesn't really restore the defaults.
JavaPlugin.getDefault().getCodeTemplateStore().load();
}
}