Merge branch 'master' into lttng-kepler
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core.tests / src / org / eclipse / linuxtools / tmf / core / tests / ctfadaptor / CtfLocationTest.java
1 /*******************************************************************************
2 * Copyright (c) 2012 Ericsson
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Matthew Khouzam - Initial generation with CodePro tools
11 * Alexandre Montplaisir - Clean up, consolidate redundant tests
12 *******************************************************************************/
13
14 package org.eclipse.linuxtools.tmf.core.tests.ctfadaptor;
15
16 import static org.junit.Assert.assertEquals;
17 import static org.junit.Assert.assertNotNull;
18
19 import org.eclipse.linuxtools.tmf.core.ctfadaptor.CtfLocation;
20 import org.eclipse.linuxtools.tmf.core.ctfadaptor.CtfLocationData;
21 import org.eclipse.linuxtools.tmf.core.event.ITmfTimestamp;
22 import org.eclipse.linuxtools.tmf.core.event.TmfTimestamp;
23 import org.junit.After;
24 import org.junit.Before;
25 import org.junit.Test;
26
27 /**
28 * The class <code>CtfLocationTest</code> contains tests for the class
29 * <code>{@link CtfLocation}</code>.
30 *
31 * @author ematkho
32 * @version 1.0
33 */
34 public class CtfLocationTest {
35
36 private CtfLocation fixture;
37
38 /**
39 * Launch the test.
40 *
41 * @param args
42 * the command line arguments
43 */
44 public static void main(String[] args) {
45 new org.junit.runner.JUnitCore().run(CtfLocationTest.class);
46 }
47
48 /**
49 * Perform pre-test initialization.
50 */
51 @Before
52 public void setUp() {
53 fixture = new CtfLocation(new CtfLocationData(1, 0));
54 fixture.setLocation(new CtfLocationData(1, 0));
55 }
56
57 /**
58 * Perform post-test clean-up.
59 */
60 @After
61 public void tearDown() {
62 // Add additional tear down code here
63 }
64
65
66 /**
67 * Run the CtfLocation(Long) constructor test.
68 */
69 @Test
70 public void testCtfLocation_long() {
71 CtfLocationData location = new CtfLocationData(1, 0);
72 CtfLocation result = new CtfLocation(location);
73
74 assertNotNull(result);
75 assertEquals(Long.valueOf(1), (Long)result.getLocationInfo().getTimestamp());
76 }
77
78 /**
79 * Run the CtfLocation(ITmfTimestamp) constructor test.
80 */
81 @Test
82 public void testCtfLocation_timestamp() {
83 ITmfTimestamp timestamp = new TmfTimestamp();
84 CtfLocation result = new CtfLocation(timestamp);
85
86 assertNotNull(result);
87 assertEquals(new Long(0L), (Long)result.getLocationInfo().getTimestamp());
88 }
89
90 /**
91 * Run the CtfLocation clone() method test.
92 */
93 @Test
94 public void testClone() {
95 CtfLocation result = fixture.clone();
96
97 assertNotNull(result);
98 assertEquals(Long.valueOf(1), (Long)result.getLocationInfo().getTimestamp());
99 }
100
101 /**
102 * Run the Long getLocation() method test.
103 */
104 @Test
105 public void testGetLocation() {
106 CtfLocationData location = fixture.getLocationInfo();
107 Long result = location.getTimestamp();
108 assertNotNull(result);
109 assertEquals("1", result.toString()); //$NON-NLS-1$
110 assertEquals((byte) 1, result.byteValue());
111 assertEquals((short) 1, result.shortValue());
112 assertEquals(1, result.intValue());
113 assertEquals(1L, result.longValue());
114 assertEquals(1.0f, result.floatValue(), 1.0f);
115 assertEquals(1.0, result.doubleValue(), 1.0);
116 }
117
118 /**
119 * Run the void setLocation(Long) method test.
120 */
121 @Test
122 public void testSetLocation() {
123 CtfLocationData location = new CtfLocationData(1337, 7331);
124 fixture.setLocation(location);
125 }
126
127 /**
128 * Test the toString() method with a valid location.
129 */
130 @Test
131 public void testToString_valid(){
132 CtfLocation fixture2 = new CtfLocation(new CtfLocationData(1337, 7331));
133 assertEquals("CtfLocation: Element [1337/7331]",fixture2.toString()); //$NON-NLS-1$
134 }
135
136 /**
137 * Test the toString() method with an invalid location.
138 */
139 @Test
140 public void testToString_invalid(){
141 CtfLocation fixture2 = new CtfLocation(new CtfLocationData(-1, -1));
142 assertEquals("CtfLocation: INVALID",fixture2.toString()); //$NON-NLS-1$
143 }
144 }
This page took 0.034259 seconds and 6 git commands to generate.