blob: 15c50b43f3c00f9fcf4fa34b94dbe5a675a66776 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2009 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.ua.tests.intro.other;
import org.eclipse.ui.internal.intro.impl.util.ReopenUtil;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
/*
* Tests the intro parser on valid intro content.
*/
public class ReopenStateTest extends TestCase {
/*
* Returns an instance of this Test.
*/
public static Test suite() {
return new TestSuite(ReopenStateTest.class);
}
public void testReopenState() {
ReopenUtil.setReopenPreference(true);
assertTrue(ReopenUtil.isReopenPreference());
ReopenUtil.setReopenPreference(false);
assertFalse(ReopenUtil.isReopenPreference());
ReopenUtil.setReopenPreference(false);
assertFalse(ReopenUtil.isReopenPreference());
ReopenUtil.setReopenPreference(true);
assertTrue(ReopenUtil.isReopenPreference());
ReopenUtil.setReopenPreference(false);
assertFalse(ReopenUtil.isReopenPreference());
}
}