blob: 335ea784f43fb256bf2d7f8bb9173f5ae88f977b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2007 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 org.eclipse.test.performance.Dimension;
import org.eclipse.test.performance.PerformanceTestCase;
import org.eclipse.wst.server.core.internal.ModuleFactory;
import org.eclipse.wst.server.core.internal.ServerPlugin;
public class ModuleFactoriesExtensionTestCase extends PerformanceTestCase {
public void testModuleFactoriesExtension() throws Exception {
Dimension[] dims = new Dimension[] {Dimension.ELAPSED_PROCESS, Dimension.USED_JAVA_HEAP};
tagAsGlobalSummary("Module Factories", dims);
startMeasuring();
ModuleFactory[] factories = ServerPlugin.getModuleFactories();
if (factories != null) {
int size = factories.length;
for (int i = 0; i < size; i++) {
factories[i].getModules(null);
}
}
stopMeasuring();
commitMeasurements();
assertPerformance();
}
}