[ctf] Simplify the logic of the unsigned long comparator.
[deliverable/tracecompass.git] / org.eclipse.linuxtools.ctf.core.tests / src / org / eclipse / linuxtools / ctf / core / tests / trace / StreamInputReaderComparatorTest.java
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
12 package org.eclipse.linuxtools.ctf.core.tests.trace;
13
14 import static org.junit.Assert.assertNotNull;
15
16 import org.eclipse.linuxtools.internal.ctf.core.trace.StreamInputReaderComparator;
17 import org.junit.Before;
18 import org.junit.Test;
19
20 /**
21 * The class <code>StreamInputReaderComparatorTest</code> contains tests for the
22 * class <code>{@link StreamInputReaderComparator}</code>.
23 *
24 * @author ematkho
25 * @version $Revision: 1.0 $
26 */
27 public class StreamInputReaderComparatorTest {
28
29 private StreamInputReaderComparator fixture;
30
31 /**
32 * Perform pre-test initialization.
33 */
34 @Before
35 public void setUp() {
36 fixture = new StreamInputReaderComparator();
37 }
38
39 /**
40 * Run the StreamInputReaderComparator() constructor test.
41 */
42 @Test
43 public void testStreamInputReaderComparator() {
44 assertNotNull(fixture);
45 }
46 }
This page took 0.031489 seconds and 5 git commands to generate.