tmf.ctf: Move each CtfIteratorManager into its own trace object
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.ctf.core.tests / src / org / eclipse / tracecompass / tmf / ctf / core / tests / AllTests.java
CommitLineData
95bf10e7 1/*******************************************************************************
61759503 2 * Copyright (c) 2012, 2013 Ericsson
95bf10e7
AM
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
2bdf0193 14package org.eclipse.tracecompass.tmf.ctf.core.tests;
81c8e6f7 15
df666eeb 16import org.eclipse.tracecompass.tmf.core.tests.shared.DebugSuite;
81c8e6f7 17import org.junit.runner.RunWith;
81c8e6f7
MK
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 *
81c8e6f7 24 * @author ematkho
81c8e6f7 25 */
df666eeb
AM
26@RunWith(DebugSuite.class)
27@DebugSuite.SuiteClasses({
81c8e6f7 28 CtfIteratorTest.class,
132a02b0 29 CtfLocationDataTest.class,
81c8e6f7 30 CtfLocationTest.class,
81a2d02e 31 CtfTmfContextTest.class,
95bf10e7 32 CtfTmfEventFieldTest.class,
81c8e6f7 33 CtfTmfEventTest.class,
95bf10e7 34 CtfTmfEventTypeTest.class,
45f672d6 35 CtfTmfLostEventsTest.class,
95bf10e7 36 CtfTmfTimestampTest.class,
53b235e1 37 CtfTmfTraceTest.class,
9ab4ca26 38 EventContextTest.class,
91e7f946
AM
39 FunkyTraceTest.class,
40
41 /* Tests in other packages (that are there because of CTF) */
2bdf0193
AM
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
81c8e6f7 45})
6e1886bc 46public class AllTests {
81c8e6f7 47
81c8e6f7 48}
This page took 0.073254 seconds and 5 git commands to generate.