tmf: Axe the TmfEventTypeManager
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.ctf.core.tests / src / org / eclipse / tracecompass / tmf / ctf / core / tests / 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.tracecompass.tmf.ctf.core.tests;
15
16 import static org.junit.Assert.assertEquals;
17 import static org.junit.Assert.assertNotNull;
18
19 import org.eclipse.tracecompass.tmf.core.event.ITmfEventField;
20 import org.eclipse.tracecompass.tmf.core.event.TmfEventField;
21 import org.eclipse.tracecompass.tmf.ctf.core.CtfTmfEventType;
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 }
46
47 /**
48 * Run the String toString() method test.
49 */
50 @Test
51 public void testToString() {
52 ITmfEventField emptyField = new TmfEventField("", null, new ITmfEventField[] {});
53 CtfTmfEventType fixture = new CtfTmfEventType("" , emptyField);
54
55 String result = fixture.toString();
56
57 assertEquals("", result);
58 }
59 }
This page took 0.032886 seconds and 5 git commands to generate.