blob: f96e647d3ba9860fe8209dcca91c990b3a43f0ea [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014 École Polytechnique de Montréal
*
* 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:
* Geneviève Bastien - Initial implementation and API
*******************************************************************************/
package org.eclipse.tracecompass.tmf.ctf.core.tests.perf;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
/**
* The class <code>AllPerformanceTests</code> builds a suite that can be used to
* run all of the performance tests within its package as well as within any
* subpackages of its package.
*
* @author Geneviève Bastien
*/
@RunWith(Suite.class)
@Suite.SuiteClasses({
org.eclipse.tracecompass.tmf.ctf.core.tests.perf.experiment.AllPerfTests.class
})
public class AllPerfTests {
}