lttng: Javadoc udpate for the lttng2.kernel.ui package
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.kernel.ui.tests / src / org / eclipse / linuxtools / lttng2 / kernel / ui / tests / ActivatorTest.java
1 /*******************************************************************************
2 * Copyright (c) 2012 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.lttng2.kernel.ui.tests;
14
15 import junit.framework.TestCase;
16
17 import org.junit.After;
18 import org.junit.AfterClass;
19 import org.junit.Before;
20 import org.junit.BeforeClass;
21 import org.junit.Test;
22
23 /**
24 * <b><u>ActivatorTest</u></b>
25 * <p>
26 * Test suite for the Activator class
27 * <p>
28 */
29 @SuppressWarnings("javadoc")
30 public class ActivatorTest extends TestCase {
31
32 // ------------------------------------------------------------------------
33 // JUnit
34 // ------------------------------------------------------------------------
35
36 /**
37 * @throws java.lang.Exception
38 */
39 @BeforeClass
40 public static void setUpBeforeClass() throws Exception {
41 }
42
43 /**
44 * @throws java.lang.Exception
45 */
46 @AfterClass
47 public static void tearDownAfterClass() throws Exception {
48 }
49
50 /**
51 * @throws java.lang.Exception
52 */
53 @Before
54 @Override
55 public void setUp() throws Exception {
56 }
57
58 /**
59 * @throws java.lang.Exception
60 */
61 @After
62 @Override
63 public void tearDown() throws Exception {
64 }
65
66 // ------------------------------------------------------------------------
67 // Tests
68 // ------------------------------------------------------------------------
69
70 /**
71 * Test method for {@link org.eclipse.linuxtools.lttng2.kernel.ui.Activator#Activator()}.
72 */
73 @Test
74 public void testActivator() {
75 assertTrue(true);
76 }
77
78 /**
79 * Test method for {@link org.eclipse.linuxtools.lttng2.kernel.ui.Activator#getDefault()}.
80 */
81 @Test
82 public void testGetDefault() {
83 assertTrue(true);
84 }
85
86 /**
87 * Test method for {@link org.eclipse.linuxtools.lttng2.kernel.ui.Activator#start(org.osgi.framework.BundleContext)}.
88 */
89 @Test
90 public void testStartBundleContext() {
91 assertTrue(true);
92 }
93
94 /**
95 * Test method for {@link org.eclipse.linuxtools.lttng2.kernel.ui.Activator#stop(org.osgi.framework.BundleContext)}.
96 */
97 @Test
98 public void testStopBundleContext() {
99 assertTrue(true);
100 }
101
102 }
This page took 0.039097 seconds and 5 git commands to generate.