6e3ab1282f51c857e0b5f4191650fbf5df5ef381
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.ctf.core.tests / src / org / eclipse / tracecompass / 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.tracecompass.tmf.ctf.core.tests;
15
16 import org.eclipse.tracecompass.tmf.core.tests.shared.DebugSuite;
17 import org.junit.runner.RunWith;
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(DebugSuite.class)
27 @DebugSuite.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.tracecompass.tmf.ctf.core.tests.request.AllTests.class,
43 org.eclipse.tracecompass.tmf.ctf.core.tests.statistics.AllTests.class,
44 org.eclipse.tracecompass.tmf.ctf.core.tests.tracemanager.AllTests.class
45 })
46 public class AllTests {
47
48 }
This page took 0.045467 seconds and 4 git commands to generate.