tmf: Correctly export all packages in runtime plugins
[deliverable/tracecompass.git] / org.eclipse.linuxtools.ctf.core.tests / src / org / eclipse / linuxtools / ctf / core / tests / trace / StreamInputReaderComparatorTest.java
1 package org.eclipse.linuxtools.ctf.core.tests.trace;
2
3 import static org.junit.Assert.assertNotNull;
4
5 import org.eclipse.linuxtools.internal.ctf.core.trace.StreamInputReaderComparator;
6 import org.junit.After;
7 import org.junit.Before;
8 import org.junit.Test;
9
10 /**
11 * The class <code>StreamInputReaderComparatorTest</code> contains tests for the
12 * class <code>{@link StreamInputReaderComparator}</code>.
13 *
14 * @author ematkho
15 * @version $Revision: 1.0 $
16 */
17 public class StreamInputReaderComparatorTest {
18
19 private StreamInputReaderComparator fixture;
20
21 /**
22 * Launch the test.
23 *
24 * @param args
25 * the command line arguments
26 */
27 public static void main(String[] args) {
28 new org.junit.runner.JUnitCore().run(StreamInputReaderComparatorTest.class);
29 }
30
31 /**
32 * Perform pre-test initialization.
33 */
34 @Before
35 public void setUp() {
36 fixture = new StreamInputReaderComparator();
37 }
38
39 /**
40 * Perform post-test clean-up.
41 */
42 @After
43 public void tearDown() {
44 // Add additional tear down code here
45 }
46
47 /**
48 * Run the StreamInputReaderComparator() constructor test.
49 */
50 @Test
51 public void testStreamInputReaderComparator() {
52 assertNotNull(fixture);
53 }
54 }
This page took 0.032722 seconds and 5 git commands to generate.