Merge branch 'master' into lttng-luna
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core.tests / src / org / eclipse / linuxtools / tmf / core / tests / ctfadaptor / CtfTmfEventTypeTest.java
CommitLineData
95bf10e7 1/*******************************************************************************
61759503 2 * Copyright (c) 2012, 2013 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
81c8e6f7
MK
14package org.eclipse.linuxtools.tmf.core.tests.ctfadaptor;
15
aa572e22
MK
16import static org.junit.Assert.assertEquals;
17import static org.junit.Assert.assertNotNull;
18
81c8e6f7
MK
19import org.eclipse.linuxtools.tmf.core.ctfadaptor.CtfTmfEventType;
20import org.eclipse.linuxtools.tmf.core.event.ITmfEventField;
21import org.eclipse.linuxtools.tmf.core.event.TmfEventField;
aa572e22 22import org.junit.Test;
81c8e6f7
MK
23
24/**
95bf10e7
AM
25 * The class <code>CtfTmfEventTypeTest</code> contains tests for the class
26 * <code>{@link CtfTmfEventType}</code>.
81c8e6f7 27 *
81c8e6f7 28 * @author ematkho
95bf10e7 29 * @version 1.0
81c8e6f7
MK
30 */
31public class CtfTmfEventTypeTest {
81c8e6f7 32
81c8e6f7 33 /**
95bf10e7 34 * Run the CtfTmfEventType(String,String,ITmfEventField) constructor test.
81c8e6f7 35 */
95bf10e7
AM
36 @Test
37 public void testCtfTmfEventType() {
6e1886bc 38 String eventName = "";
214cc822 39 ITmfEventField content = new TmfEventField("", null, new ITmfEventField[] {});
95bf10e7
AM
40 CtfTmfEventType result = new CtfTmfEventType( eventName, content);
41
42 assertNotNull(result);
6e1886bc
AM
43 assertEquals("", result.toString());
44 assertEquals("", result.getName());
45 assertEquals("Ctf Event", result.getContext());
95bf10e7
AM
46 }
47
48 /**
49 * Run the String toString() method test.
50 */
51 @Test
52 public void testToString() {
214cc822 53 ITmfEventField emptyField = new TmfEventField("", null, new ITmfEventField[] {});
6e1886bc 54 CtfTmfEventType fixture = new CtfTmfEventType("", emptyField);
95bf10e7
AM
55
56 String result = fixture.toString();
57
6e1886bc 58 assertEquals("", result);
81c8e6f7
MK
59 }
60}
This page took 0.033606 seconds and 5 git commands to generate.