ctf: Rename packages to org.eclipse.tracecompass.*
[deliverable/tracecompass.git] / org.eclipse.tracecompass.ctf.core.tests / src / org / eclipse / tracecompass / ctf / core / tests / trace / TestAll.java
CommitLineData
4bd7f2db 1/*******************************************************************************
fe75d403 2 * Copyright (c) 2013-2014 Ericsson
4bd7f2db
AM
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 * Matthew Khouzam - Initial API and implementation
10 *******************************************************************************/
11
f357bcd4 12package org.eclipse.tracecompass.ctf.core.tests.trace;
866e5b51 13
866e5b51
FC
14import org.junit.runner.RunWith;
15import org.junit.runners.Suite;
16
17/**
18 * The class <code>TestAll</code> builds a suite that can be used to run all of
19 * the tests within its package as well as within any subpackages of its
20 * package.
81c8e6f7 21 *
fe75d403 22 * @author Matthew Khouzam
866e5b51
FC
23 * @version $Revision: 1.0 $
24 */
25@RunWith(Suite.class)
26@Suite.SuiteClasses({
c9fe9175
AM
27 CTFTraceCallsitePerformanceTest.class,
28 CTFTraceReaderTest.class,
29 CTFTraceTest.class,
fe75d403 30 CTFTraceGrowingTest.class,
c9fe9175
AM
31 IOstructgenTest.class,
32 MetadataTest.class,
d84419e1
AM
33 CTFStreamInputPacketIndexEntryTest.class,
34 CTFStreamInputPacketIndexTest.class,
35 CTFStreamInputReaderTest.class,
36 CTFStreamInputReaderTimestampComparatorTest.class,
37 CTFStreamInputTest.class,
38 CTFStreamTest.class,
c9fe9175
AM
39 UtilsTest.class
40})
866e5b51
FC
41public class TestAll {
42
866e5b51 43}
This page took 0.044655 seconds and 5 git commands to generate.