Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 21e5d0a51a98d379cfb21df298133137a51134bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/*******************************************************************************
 * Copyright (c) 2012 Ericsson
 *
 * All rights reserved. This program and the accompanying materials are
 * made available under the terms of the Eclipse Public License v1.0 which
 * accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *   Alexandre Montplaisir - Initial API and implementation
 *******************************************************************************/

package org.eclipse.linuxtools.tmf.core.tests.ctfadaptor;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;

import org.eclipse.linuxtools.tmf.core.ctfadaptor.CtfLocationInfo;
import org.junit.Before;
import org.junit.Test;

/**
 * Collection of tests for the {@link CtfLocationInfo}
 *
 * @author alexmont
 */
public class CtfLocationDataTest {

    private CtfLocationInfo fixture;

    /**
     * Perform pre-test initialization.
     */
    @Before
    public void setUp() {
        fixture = new CtfLocationInfo(1, 0);
    }

    /**
     * Test for the .getTimestamp() and .getIndex() methods
     */
    @Test
    public void testGetters() {
        long timestamp = fixture.getTimestamp();
        long index = fixture.getIndex();

        assertEquals(1, timestamp);
        assertEquals(0, index);
    }

    /**
     * Test for the .hashCode() method
     */
    @Test
    public void testHashCode() {
        int code = fixture.hashCode();
        assertEquals(962, code);
    }

    /**
     * Test for the .equals() method
     */
    @Test
    public void testEquals() {
        CtfLocationInfo same = new CtfLocationInfo(1, 0);
        CtfLocationInfo diff1 = new CtfLocationInfo(100, 0);
        CtfLocationInfo diff2 = new CtfLocationInfo(1, 10);

        assertTrue(fixture.equals(same));
        assertFalse(fixture.equals(diff1));
        assertFalse(fixture.equals(diff2));
    }

    /**
     * Test for the .compareTo() method
     */
    @Test
    public void testCompareTo() {
        CtfLocationInfo same = new CtfLocationInfo(1, 0);
        CtfLocationInfo smaller = new CtfLocationInfo(0, 0);
        CtfLocationInfo bigger1 = new CtfLocationInfo(1000, 500);
        CtfLocationInfo bigger2 = new CtfLocationInfo(1, 1);

        assertEquals(0, same.compareTo(fixture));
        assertEquals(-1, smaller.compareTo(fixture));
        assertEquals(1, bigger1.compareTo(fixture));
        assertEquals(1, bigger2.compareTo(fixture));
    }

    /**
     * Test for the .toString() method
     */
    @Test
    public void testToString() {
        String expected = "Element [1/0]"; //$NON-NLS-1$
        assertEquals(expected, fixture.toString());
    }
}

Back to the top