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
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
13 package org.eclipse.tracecompass.tmf.ctf.core.tests.perf;
14
15 import org.junit.runner.RunWith;
16 import 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({
27 org.eclipse.tracecompass.tmf.ctf.core.tests.perf.experiment.AllPerfTests.class
28 })
29 public class AllPerfTests {
30
31 }
This page took 0.033225 seconds and 5 git commands to generate.