Contribute native CTF Parser (bug370499)
[deliverable/tracecompass.git] / org.eclipse.linuxtools.ctf.core.tests / src / org / eclipse / linuxtools / ctf / core / tests / trace / TestAll.java
1 package org.eclipse.linuxtools.ctf.core.tests.trace;
2
3 import org.junit.runner.JUnitCore;
4 import org.junit.runner.RunWith;
5 import org.junit.runners.Suite;
6
7 /**
8 * The class <code>TestAll</code> builds a suite that can be used to run all of
9 * the tests within its package as well as within any subpackages of its
10 * package.
11 *
12 * @author ematkho
13 * @version $Revision: 1.0 $
14 */
15 @RunWith(Suite.class)
16 @Suite.SuiteClasses({
17 CTFTraceReaderTest.class,
18 StreamInputTest.class,
19 StreamInputReaderTimestampComparatorTest.class,
20 StreamInputReaderTest.class,
21 StreamInputReaderComparatorTest.class,
22 // StreamInputPacketReaderTest.class,
23 StreamInputPacketIndexEntryTest.class,
24 StreamInputPacketIndexTest.class, StreamTest.class, CTFTraceTest.class,
25 MetadataTest.class, })
26 public class TestAll {
27
28 /**
29 * Launch the test.
30 *
31 * @param args
32 * the command line arguments
33 */
34 public static void main(String[] args) {
35 JUnitCore.runClasses(new Class[] { TestAll.class });
36 }
37 }
This page took 0.030199 seconds and 5 git commands to generate.