Fix Statistics JUnit test
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core.tests / src / org / eclipse / linuxtools / tmf / core / tests / ctfadaptor / TestAll.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
16import org.junit.runner.JUnitCore;
17import org.junit.runner.RunWith;
18import 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 *
81c8e6f7 25 * @author ematkho
95bf10e7 26 * @version 1.0
81c8e6f7
MK
27 */
28@RunWith(Suite.class)
29@Suite.SuiteClasses({
81c8e6f7
MK
30 CtfIteratorTest.class,
31 CtfLocationTest.class,
95bf10e7
AM
32 CtfTmfContentTest.class,
33 CtfTmfEventFieldTest.class,
81c8e6f7 34 CtfTmfEventTest.class,
95bf10e7
AM
35 CtfTmfEventTypeTest.class,
36 CtfTmfTimestampTest.class,
53b235e1
MK
37 CtfTmfTraceTest.class,
38 CtfTmfLightweightContextTest.class
81c8e6f7
MK
39})
40public class TestAll {
41
42 /**
43 * Launch the test.
44 *
95bf10e7
AM
45 * @param args
46 * the command line arguments
81c8e6f7
MK
47 */
48 public static void main(String[] args) {
49 JUnitCore.runClasses(new Class[] { TestAll.class });
50 }
51}
This page took 0.028644 seconds and 5 git commands to generate.