rcp: Move plugins to their own sub-directory
[deliverable/tracecompass.git] / org.eclipse.tracecompass.ctf.core.tests / src / org / eclipse / tracecompass / ctf / core / tests / trace / CTFStreamInputReaderTimestampComparatorTest.java
1 /*******************************************************************************
2 * Copyright (c) 2013, 2014 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
12 package org.eclipse.tracecompass.ctf.core.tests.trace;
13
14 import static org.junit.Assert.assertNotNull;
15
16 import org.eclipse.tracecompass.internal.ctf.core.trace.StreamInputReaderTimestampComparator;
17 import org.junit.Before;
18 import org.junit.Test;
19
20 /**
21 * The class <code>StreamInputReaderTimestampComparatorTest</code> contains
22 * tests for the class <code>{@link StreamInputReaderTimestampComparator}</code>
23 *
24 * @author ematkho
25 * @version $Revision: 1.0 $
26 */
27 public class CTFStreamInputReaderTimestampComparatorTest {
28
29 private StreamInputReaderTimestampComparator fixture;
30
31 /**
32 * Perform pre-test initialization.
33 */
34 @Before
35 public void setUp() {
36 fixture = new StreamInputReaderTimestampComparator();
37 }
38
39 /**
40 * Run the StreamInputReaderTimestampComparator() constructor test.
41 */
42 @Test
43 public void testStreamInputReaderTimestampComparator_1() {
44 assertNotNull(fixture);
45 }
46
47 }
This page took 0.038532 seconds and 5 git commands to generate.