blob: 8ad24315220e558365e82908761b937b492baa0b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* 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);
}
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();
}
}