blob: 78ea73db9996bb394ddd35a040bb801fe1ed8209 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 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.ui.tests.performance.views;
import junit.extensions.TestSetup;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.ui.IWorkbenchPage;
import org.eclipse.ui.IWorkbenchWindow;
import org.eclipse.ui.PlatformUI;
import org.eclipse.jdt.ui.JavaUI;
import org.eclipse.jdt.ui.tests.performance.JdtPerformanceTestCase;
public class PackageExplorerEmptyPerfTest extends JdtPerformanceTestCase {
public static Test setUpTest(Test someTest) {
return new TestSetup(someTest);
}
public static Test suite() {
TestSuite suite= new TestSuite("PackageExplorerEmptyPerfTest");
suite.addTest(new PackageExplorerPerfTest("testOpen"));
return new TestSetup(suite);
}
public PackageExplorerEmptyPerfTest(String name) {
super(name);
}
public void testOpen() throws Exception {
IWorkbenchWindow activeWorkbenchWindow= PlatformUI.getWorkbench().getActiveWorkbenchWindow();
IWorkbenchPage page= activeWorkbenchWindow.getActivePage();
page.close();
page= activeWorkbenchWindow.openPage("org.eclipse.ui.resourcePerspective", ResourcesPlugin.getWorkspace().getRoot());
joinBackgroudActivities();
startMeasuring();
page.showView(JavaUI.ID_PACKAGES);
finishMeasurements();
}
}