Add events structures, indexes and event caches per trace
[deliverable/tracecompass.git] / org.eclipse.linuxtools.ctf.core.tests / src / org / eclipse / linuxtools / ctf / core / tests / trace / StreamInputReaderTimestampComparatorTest.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.StreamInputReaderTimestampComparator;
6 import org.junit.After;
7 import org.junit.Before;
8 import org.junit.Test;
9
10 /**
11 * The class <code>StreamInputReaderTimestampComparatorTest</code> contains
12 * tests for the class <code>{@link StreamInputReaderTimestampComparator}</code>
13 *
14 * @author ematkho
15 * @version $Revision: 1.0 $
16 */
17 public class StreamInputReaderTimestampComparatorTest {
18
19 private StreamInputReaderTimestampComparator 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(StreamInputReaderTimestampComparatorTest.class);
29 }
30
31 /**
32 * Perform pre-test initialization.
33 */
34 @Before
35 public void setUp() {
36 fixture = new StreamInputReaderTimestampComparator();
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 StreamInputReaderTimestampComparator() constructor test.
49 */
50 @Test
51 public void testStreamInputReaderTimestampComparator_1() {
52 assertNotNull(fixture);
53 }
54
55 }
This page took 0.03342 seconds and 6 git commands to generate.