blob: c641550f6e8873c29463a2306b05f33942adbcdd [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2006 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.ui.tests.session;
import junit.framework.TestCase;
import org.eclipse.ui.PlatformUI;
/**
* Tests intro-related session properties.
*
* @since 3.1
*/
public class IntroSessionTests extends TestCase {
/**
* @param name
*/
public IntroSessionTests(String name) {
super(name);
}
public void testIntro() {
//assert that the intro was not shown
assertNull(PlatformUI.getWorkbench().getIntroManager().getIntro());
}
}