3230a87700b243d99ad530f89172f011cc585a92
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ctf.core.tests / src / org / eclipse / linuxtools / tmf / ctf / core / tests / AllTests.java
1 /*******************************************************************************
2 * Copyright (c) 2012, 2013 Ericsson
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 * Matthew Khouzam - Initial generation with CodePro tools
11 * Alexandre Montplaisir - Clean up, consolidate redundant tests
12 *******************************************************************************/
13
14 package org.eclipse.linuxtools.tmf.ctf.core.tests;
15
16 import org.junit.runner.RunWith;
17 import org.junit.runners.Suite;
18
19 /**
20 * The class <code>TestAll</code> builds a suite that can be used to run all
21 * of the tests within its package as well as within any subpackages of its
22 * package.
23 *
24 * @author ematkho
25 */
26 @RunWith(Suite.class)
27 @Suite.SuiteClasses({
28 CtfIteratorTest.class,
29 CtfLocationDataTest.class,
30 CtfLocationTest.class,
31 CtfTmfContextTest.class,
32 CtfTmfEventFieldTest.class,
33 CtfTmfEventTest.class,
34 CtfTmfEventTypeTest.class,
35 CtfTmfLostEventsTest.class,
36 CtfTmfTimestampTest.class,
37 CtfTmfTraceTest.class,
38 EventContextTest.class,
39 FunkyTraceTest.class,
40
41 /* Tests in other packages (that are there because of CTF) */
42 org.eclipse.linuxtools.tmf.ctf.core.tests.request.AllTests.class,
43 org.eclipse.linuxtools.tmf.ctf.core.tests.statistics.AllTests.class,
44 org.eclipse.linuxtools.tmf.ctf.core.tests.tracemanager.AllTests.class
45 })
46 public class AllTests {
47
48 }
This page took 0.03846 seconds and 4 git commands to generate.