Fix another pile of Javadoc warnings
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core.tests / src / org / eclipse / linuxtools / tmf / core / tests / TmfCorePluginTest.java
1 /*******************************************************************************
2 * Copyright (c) 2009, 2010 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 * Francois Chouinard - Initial API and implementation
11 *******************************************************************************/
12
13 package org.eclipse.linuxtools.tmf.core.tests;
14
15 import junit.framework.TestCase;
16
17 import org.eclipse.linuxtools.internal.tmf.core.Activator;
18
19 /**
20 * <b><u>TmfCorePluginTest</u></b>
21 * <p>
22 * Test the TMF core plug-in activator
23 */
24 @SuppressWarnings({ "nls" })
25 public class TmfCorePluginTest extends TestCase {
26
27 // ------------------------------------------------------------------------
28 // Attributes
29 // ------------------------------------------------------------------------
30
31 // Plug-in instantiation
32 static final Activator fPlugin = new Activator();
33
34 // ------------------------------------------------------------------------
35 // Housekeping
36 // ------------------------------------------------------------------------
37
38 /**
39 * @param name the test name
40 */
41 public TmfCorePluginTest(String name) {
42 super(name);
43 }
44
45 @Override
46 protected void setUp() throws Exception {
47 super.setUp();
48 }
49
50 @Override
51 protected void tearDown() throws Exception {
52 super.tearDown();
53 }
54
55 // ------------------------------------------------------------------------
56 // Test cases
57 // ------------------------------------------------------------------------
58
59 /**
60 *
61 */
62 public void testTmfCorePluginId() {
63 assertEquals("Plugin ID", "org.eclipse.linuxtools.tmf.core", Activator.PLUGIN_ID);
64 }
65
66 /**
67 *
68 */
69 public void testGetDefault() {
70 Activator plugin = Activator.getDefault();
71 assertEquals("getDefault()", plugin, fPlugin);
72 }
73
74 }
This page took 0.034552 seconds and 6 git commands to generate.