ctf: Move plugins to their own sub-directory
[deliverable/tracecompass.git] / ctf / org.eclipse.tracecompass.tmf.ctf.core.tests / src / org / eclipse / tracecompass / tmf / ctf / core / tests / context / CtfLocationTest.java
1 /*******************************************************************************
2 * Copyright (c) 2012, 2014 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.tracecompass.tmf.ctf.core.tests.context;
15
16 import static org.junit.Assert.assertEquals;
17 import static org.junit.Assert.assertNotNull;
18
19 import org.eclipse.tracecompass.tmf.core.timestamp.ITmfTimestamp;
20 import org.eclipse.tracecompass.tmf.core.timestamp.TmfTimestamp;
21 import org.eclipse.tracecompass.tmf.ctf.core.context.CtfLocation;
22 import org.eclipse.tracecompass.tmf.ctf.core.context.CtfLocationInfo;
23 import org.junit.Before;
24 import org.junit.Test;
25
26 /**
27 * The class <code>CtfLocationTest</code> contains tests for the class
28 * <code>{@link CtfLocation}</code>.
29 *
30 * @author ematkho
31 * @version 1.0
32 */
33 public class CtfLocationTest {
34
35 private CtfLocation fixture;
36
37 /**
38 * Perform pre-test initialization.
39 */
40 @Before
41 public void setUp() {
42 fixture = new CtfLocation(new CtfLocationInfo(1, 0));
43 }
44
45 /**
46 * Run the CtfLocation(Long) constructor test.
47 */
48 @Test
49 public void testCtfLocation_long() {
50 CtfLocationInfo location = new CtfLocationInfo(1, 0);
51 CtfLocation result = new CtfLocation(location);
52
53 assertNotNull(result);
54 assertEquals(1L, result.getLocationInfo().getTimestamp());
55 }
56
57 /**
58 * Run the CtfLocation(ITmfTimestamp) constructor test.
59 */
60 @Test
61 public void testCtfLocation_timestamp() {
62 ITmfTimestamp timestamp = new TmfTimestamp();
63 CtfLocation result = new CtfLocation(timestamp);
64
65 assertNotNull(result);
66 assertEquals(0L, result.getLocationInfo().getTimestamp());
67 }
68
69 /**
70 * Run the Long getLocation() method test.
71 */
72 @Test
73 public void testGetLocation() {
74 CtfLocationInfo location = fixture.getLocationInfo();
75 long result = location.getTimestamp();
76 assertEquals(1L, result);
77 }
78
79 /**
80 * Run the void setLocation(Long) method test.
81 */
82 @Test
83 public void testSetLocation() {
84 CtfLocationInfo location = new CtfLocationInfo(1337, 7331);
85 fixture = new CtfLocation(location);
86 }
87
88 /**
89 * Test the toString() method with a valid location.
90 */
91 @Test
92 public void testToString_valid(){
93 CtfLocation fixture2 = new CtfLocation(new CtfLocationInfo(1337, 7331));
94 assertEquals("CtfLocation [fLocationInfo=Element [1337/7331]]", fixture2.toString());
95 }
96
97 /**
98 * Test the toString() method with an invalid location.
99 */
100 @Test
101 public void testToString_invalid(){
102 CtfLocation fixture2 = new CtfLocation(new CtfLocationInfo(-1, -1));
103 assertEquals("CtfLocation [INVALID]", fixture2.toString());
104 }
105 }
This page took 0.037072 seconds and 5 git commands to generate.