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
1 /*******************************************************************************
2 * Copyright (c) 2012, 2013 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.CtfTmfEventType;
20 import org.eclipse.linuxtools.tmf.core.event.ITmfEventField;
21 import org.eclipse.linuxtools.tmf.core.event.TmfEventField;
22 import org.junit.Test;
23
24 /**
25 * The class <code>CtfTmfEventTypeTest</code> contains tests for the class
26 * <code>{@link CtfTmfEventType}</code>.
27 *
28 * @author ematkho
29 * @version 1.0
30 */
31 public class CtfTmfEventTypeTest {
32
33 /**
34 * Run the CtfTmfEventType(String,String,ITmfEventField) constructor test.
35 */
36 @Test
37 public void testCtfTmfEventType() {
38 String eventName = "";
39 ITmfEventField content = new TmfEventField("", null, new ITmfEventField[] {});
40 CtfTmfEventType result = new CtfTmfEventType( eventName, content);
41
42 assertNotNull(result);
43 assertEquals("", result.toString());
44 assertEquals("", result.getName());
45 assertEquals("Ctf Event", result.getContext());
46 }
47
48 /**
49 * Run the String toString() method test.
50 */
51 @Test
52 public void testToString() {
53 ITmfEventField emptyField = new TmfEventField("", null, new ITmfEventField[] {});
54 CtfTmfEventType fixture = new CtfTmfEventType("", emptyField);
55
56 String result = fixture.toString();
57
58 assertEquals("", result);
59 }
60 }
This page took 0.031484 seconds and 5 git commands to generate.