tmf: Enhance TmfEventField.toString() to also print sub-fields
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core.tests / src / org / eclipse / linuxtools / tmf / core / tests / ctfadaptor / TestAll.java
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
14 package org.eclipse.linuxtools.tmf.core.tests.ctfadaptor;
15
16 import org.junit.runner.JUnitCore;
17 import org.junit.runner.RunWith;
18 import org.junit.runners.Suite;
19
20 /**
21 * The class <code>TestAll</code> builds a suite that can be used to run all
22 * of the tests within its package as well as within any subpackages of its
23 * package.
24 *
25 * @author ematkho
26 * @version 1.0
27 */
28 @RunWith(Suite.class)
29 @Suite.SuiteClasses({
30 CtfIteratorTest.class,
31 CtfLocationDataTest.class,
32 CtfLocationTest.class,
33 CtfTmfEventFieldTest.class,
34 CtfTmfEventTest.class,
35 CtfTmfEventTypeTest.class,
36 CtfTmfTimestampTest.class,
37 CtfTmfTraceTest.class,
38 CtfTmfLightweightContextTest.class
39 })
40 public class TestAll {
41
42 /**
43 * Launch the test.
44 *
45 * @param args
46 * the command line arguments
47 */
48 public static void main(String[] args) {
49 JUnitCore.runClasses(new Class[] { TestAll.class });
50 }
51 }
This page took 0.033112 seconds and 5 git commands to generate.