LTTng: CPU usage analysis from the LTTng kernel trace
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core.tests / src / org / eclipse / linuxtools / tmf / core / tests / ctfadaptor / CtfTmfEventTypeTest.java
index 76aaed0483db9db69dd54bf3dd0815893f3b932d..cbdf94760da618d8dd39f50c2fabb3fa530b36b8 100644 (file)
@@ -1,3 +1,16 @@
+/*******************************************************************************
+ * Copyright (c) 2012, 2013 Ericsson
+ *
+ * All rights reserved. This program and the accompanying materials are
+ * made available under the terms of the Eclipse Public License v1.0 which
+ * accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *   Matthew Khouzam - Initial generation with CodePro tools
+ *   Alexandre Montplaisir - Clean up, consolidate redundant tests
+ *******************************************************************************/
+
 package org.eclipse.linuxtools.tmf.core.tests.ctfadaptor;
 
 import static org.junit.Assert.assertEquals;
@@ -6,94 +19,43 @@ import static org.junit.Assert.assertNotNull;
 import org.eclipse.linuxtools.tmf.core.ctfadaptor.CtfTmfEventType;
 import org.eclipse.linuxtools.tmf.core.event.ITmfEventField;
 import org.eclipse.linuxtools.tmf.core.event.TmfEventField;
-import org.junit.After;
-import org.junit.Before;
+import org.eclipse.linuxtools.tmf.tests.stubs.trace.TmfTraceStub;
 import org.junit.Test;
 
 /**
- * The class <code>CtfTmfEventTypeTest</code> contains tests for the class <code>{@link CtfTmfEventType}</code>.
+ * The class <code>CtfTmfEventTypeTest</code> contains tests for the class
+ * <code>{@link CtfTmfEventType}</code>.
  *
- * @generatedBy CodePro at 03/05/12 2:29 PM
  * @author ematkho
- * @version $Revision: 1.0 $
+ * @version 1.0
  */
 public class CtfTmfEventTypeTest {
+
     /**
      * Run the CtfTmfEventType(String,String,ITmfEventField) constructor test.
-     *
-     * @throws Exception
-     *
-     * @generatedBy CodePro at 03/05/12 2:29 PM
      */
     @Test
-    public void testCtfTmfEventType_1() {
-        String contextId = ""; //$NON-NLS-1$
-        String eventName = ""; //$NON-NLS-1$
-        ITmfEventField content = new TmfEventField("", new ITmfEventField[] {}); //$NON-NLS-1$
-
-        CtfTmfEventType result = new CtfTmfEventType( eventName, content);
+    public void testCtfTmfEventType() {
+        String eventName = "";
+        ITmfEventField content = new TmfEventField("", null, new ITmfEventField[] {});
+        CtfTmfEventType result = new CtfTmfEventType(eventName, new TmfTraceStub(), content);
 
-        // add additional test code here
         assertNotNull(result);
-        assertEquals("", result.toString()); //$NON-NLS-1$
-        assertEquals("", result.getName()); //$NON-NLS-1$
-        assertEquals("Ctf Event", result.getContext()); //$NON-NLS-1$
+        assertEquals("", result.toString());
+        assertEquals("", result.getName());
+        assertEquals("Ctf Event/null", result.getContext());
     }
 
     /**
      * Run the String toString() method test.
-     *
-     * @throws Exception
-     *
-     * @generatedBy CodePro at 03/05/12 2:29 PM
      */
     @Test
-    public void testToString_1()
-        throws Exception {
-        CtfTmfEventType fixture = new CtfTmfEventType("", new TmfEventField("", new ITmfEventField[] {})); //$NON-NLS-1$ //$NON-NLS-2$
+    public void testToString() {
+        ITmfEventField emptyField = new TmfEventField("", null, new ITmfEventField[] {});
+        CtfTmfEventType fixture = new CtfTmfEventType("", new TmfTraceStub() , emptyField);
 
         String result = fixture.toString();
 
-        // add additional test code here
-        assertEquals("", result); //$NON-NLS-1$
-    }
-
-    /**
-     * Perform pre-test initialization.
-     *
-     * @throws Exception
-     *         if the initialization fails for some reason
-     *
-     * @generatedBy CodePro at 03/05/12 2:29 PM
-     */
-    @Before
-    public void setUp()
-        throws Exception {
-        // add additional set up code here
-    }
-
-    /**
-     * Perform post-test clean-up.
-     *
-     * @throws Exception
-     *         if the clean-up fails for some reason
-     *
-     * @generatedBy CodePro at 03/05/12 2:29 PM
-     */
-    @After
-    public void tearDown()
-        throws Exception {
-        // Add additional tear down code here
-    }
-
-    /**
-     * Launch the test.
-     *
-     * @param args the command line arguments
-     *
-     * @generatedBy CodePro at 03/05/12 2:29 PM
-     */
-    public static void main(String[] args) {
-        new org.junit.runner.JUnitCore().run(CtfTmfEventTypeTest.class);
+        assertEquals("", result);
     }
 }
\ No newline at end of file
This page took 0.026979 seconds and 5 git commands to generate.