blob: e2dc117861ff4b40313149f6be5c42a88949ced7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 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.wst.server.tests.performance;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.eclipse.core.resources.IProject;
import org.eclipse.test.performance.PerformanceTestCase;
import org.eclipse.wst.server.core.ServerUtil;
public class ModuleFactoriesExtensionTestCase extends PerformanceTestCase {
public static Test suite() {
return new TestSuite(ModuleFactoriesExtensionTestCase.class, "ModuleFactoriesExtensionTestCase");
}
public void testModuleFactoriesExtension() throws Exception {
startMeasuring();
ServerUtil.getModules((IProject) null);
stopMeasuring();
commitMeasurements();
assertPerformance();
}
}