rcp: Move plugins to their own sub-directory
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.ctf.core.tests / perf / org / eclipse / tracecompass / tmf / ctf / core / tests / perf / AllPerfTests.java
CommitLineData
6629cc35
GB
1/*******************************************************************************
2 * Copyright (c) 2014 École Polytechnique de Montréal
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Geneviève Bastien - Initial implementation and API
11 *******************************************************************************/
12
2bdf0193 13package org.eclipse.tracecompass.tmf.ctf.core.tests.perf;
6629cc35
GB
14
15import org.junit.runner.RunWith;
16import org.junit.runners.Suite;
17
18/**
19 * The class <code>AllPerformanceTests</code> builds a suite that can be used to
20 * run all of the performance tests within its package as well as within any
21 * subpackages of its package.
22 *
23 * @author Geneviève Bastien
24 */
25@RunWith(Suite.class)
26@Suite.SuiteClasses({
2bdf0193 27 org.eclipse.tracecompass.tmf.ctf.core.tests.perf.experiment.AllPerfTests.class
6629cc35
GB
28})
29public class AllPerfTests {
30
31}
This page took 0.099921 seconds and 5 git commands to generate.