blob: bb9f6b076725632ad33ebf79ea88ad292754a361 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 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.text.tests.performance;
import org.eclipse.test.performance.PerformanceMeter;
/**
* Startup performance tests.
*
* @since 3.1
*/
public class StartupPerformanceTestCase extends TextPerformanceTestCase {
/*
* @see TextPerformanceTestCase#TestCase()
*/
public StartupPerformanceTestCase() {
super();
}
/*
* @see TextPerformanceTestCase#TestCase(String)
*/
public StartupPerformanceTestCase(String name) {
super(name);
}
protected void measureStartup(PerformanceMeter performanceMeter) {
performanceMeter.stop();
performanceMeter.commit();
assertPerformance(performanceMeter);
}
}