Remove maven assembly plugin configs.
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core.tests / src / org / eclipse / linuxtools / tmf / core / tests / ctfadaptor / AllTests.java
CommitLineData
95bf10e7
AM
1/*******************************************************************************
2 * Copyright (c) 2012 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
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,
6e1886bc 32 CtfTmfLightweightContextTest.class,
95bf10e7 33 CtfTmfEventFieldTest.class,
81c8e6f7 34 CtfTmfEventTest.class,
95bf10e7
AM
35 CtfTmfEventTypeTest.class,
36 CtfTmfTimestampTest.class,
53b235e1 37 CtfTmfTraceTest.class,
81c8e6f7 38})
6e1886bc 39public class AllTests {
81c8e6f7 40
81c8e6f7 41}
This page took 0.030728 seconds and 5 git commands to generate.