LTTng: CPU usage analysis from the LTTng kernel trace
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core.tests / src / org / eclipse / linuxtools / tmf / core / tests / ctfadaptor / AllTests.java
1 /*******************************************************************************
2 * Copyright (c) 2012, 2013 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.RunWith;
17 import 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 *
24 * @author ematkho
25 * @version 1.0
26 */
27 @RunWith(Suite.class)
28 @Suite.SuiteClasses({
29 CtfIteratorTest.class,
30 CtfLocationDataTest.class,
31 CtfLocationTest.class,
32 CtfTmfContextTest.class,
33 CtfTmfEventFieldTest.class,
34 CtfTmfEventTest.class,
35 CtfTmfEventTypeTest.class,
36 CtfTmfLostEventsTest.class,
37 CtfTmfTimestampTest.class,
38 CtfTmfTraceTest.class,
39 EventContextTest.class,
40 FunkyTraceTest.class
41 })
42 public class AllTests {
43
44 }
This page took 0.036092 seconds and 5 git commands to generate.