Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 630b212ea1e6385c52124d65db8c4b513236eea1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*******************************************************************************
 * 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.linuxtools.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.linuxtools.tmf.ctf.core.tests.perf.experiment.AllPerfTests.class
})
public class AllPerfTests {

}

Back to the top