blob: 9ffab2e62b5ca32bd7fdc1aaa8e927645cb47e1a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2018 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.core.tests.runtime.perf;
import junit.framework.TestCase;
import org.eclipse.test.performance.*;
public class StartupTest extends TestCase {
public StartupTest(String methodName) {
super(methodName);
}
public void testApplicationStartup() {
PerformanceMeter meter = Performance.getDefault().createPerformanceMeter(getClass().getName() + '.' + getName());
try {
meter.stop();
// tag for showing in the performance fingerprint graph
Performance performance = Performance.getDefault();
performance.tagAsGlobalSummary(meter, "Core Headless Startup", Dimension.ELAPSED_PROCESS);
String reportOption = System.getProperty("eclipseTest.ReportResults");
boolean bReport = (reportOption == null) ? true : !("false".equalsIgnoreCase(reportOption));
if (bReport) {
meter.commit();
}
Performance.getDefault().assertPerformanceInRelativeBand(meter, Dimension.ELAPSED_PROCESS, -100, 5);
} finally {
meter.dispose();
}
}
}