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