Merge branch 'master' into lttng-luna
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core.tests / src / org / eclipse / linuxtools / tmf / core / tests / ctfadaptor / 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
81c8e6f7
MK
14package org.eclipse.linuxtools.tmf.core.tests.ctfadaptor;
15
81c8e6f7
MK
16import org.junit.runner.RunWith;
17import 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 *
81c8e6f7 24 * @author ematkho
95bf10e7 25 * @version 1.0
81c8e6f7
MK
26 */
27@RunWith(Suite.class)
28@Suite.SuiteClasses({
81c8e6f7 29 CtfIteratorTest.class,
132a02b0 30 CtfLocationDataTest.class,
81c8e6f7 31 CtfLocationTest.class,
81a2d02e 32 CtfTmfContextTest.class,
95bf10e7 33 CtfTmfEventFieldTest.class,
81c8e6f7 34 CtfTmfEventTest.class,
95bf10e7 35 CtfTmfEventTypeTest.class,
45f672d6 36 CtfTmfLostEventsTest.class,
95bf10e7 37 CtfTmfTimestampTest.class,
53b235e1 38 CtfTmfTraceTest.class,
9824473b 39 EventContextTest.class
81c8e6f7 40})
6e1886bc 41public class AllTests {
81c8e6f7 42
81c8e6f7 43}
This page took 0.035876 seconds and 5 git commands to generate.