ctf: Update copyright headers and add missing ones
[deliverable/tracecompass.git] / org.eclipse.linuxtools.ctf.core.tests / src / org / eclipse / linuxtools / ctf / core / tests / trace / StreamInputReaderTimestampComparatorTest.java
CommitLineData
4bd7f2db
AM
1/*******************************************************************************
2 * Copyright (c) 2013 Ericsson
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 * Matthew Khouzam - Initial API and implementation
10 *******************************************************************************/
11
866e5b51
FC
12package org.eclipse.linuxtools.ctf.core.tests.trace;
13
866e5b51
FC
14import static org.junit.Assert.assertNotNull;
15
ce2388e0 16import org.eclipse.linuxtools.internal.ctf.core.trace.StreamInputReaderTimestampComparator;
788ddcbc
MK
17import org.junit.After;
18import org.junit.Before;
19import org.junit.Test;
866e5b51
FC
20
21/**
22 * The class <code>StreamInputReaderTimestampComparatorTest</code> contains
23 * tests for the class <code>{@link StreamInputReaderTimestampComparator}</code>
788ddcbc 24 *
866e5b51
FC
25 * @author ematkho
26 * @version $Revision: 1.0 $
27 */
28public class StreamInputReaderTimestampComparatorTest {
29
30 private StreamInputReaderTimestampComparator fixture;
31
32 /**
33 * Launch the test.
788ddcbc 34 *
866e5b51
FC
35 * @param args
36 * the command line arguments
37 */
38 public static void main(String[] args) {
39 new org.junit.runner.JUnitCore().run(StreamInputReaderTimestampComparatorTest.class);
40 }
41
42 /**
43 * Perform pre-test initialization.
44 */
45 @Before
46 public void setUp() {
47 fixture = new StreamInputReaderTimestampComparator();
48 }
49
50 /**
51 * Perform post-test clean-up.
52 */
53 @After
54 public void tearDown() {
55 // Add additional tear down code here
56 }
57
58 /**
59 * Run the StreamInputReaderTimestampComparator() constructor test.
60 */
61 @Test
79cb3749 62 public void testStreamInputReaderTimestampComparator_1() {
866e5b51
FC
63 assertNotNull(fixture);
64 }
65
866e5b51 66}
This page took 0.038095 seconds and 5 git commands to generate.