lttng: Move plugins to their own sub-directory
[deliverable/tracecompass.git] / lttng / org.eclipse.tracecompass.lttng2.kernel.core.tests / src / org / eclipse / tracecompass / lttng2 / kernel / core / tests / ActivatorTest.java
1 /*******************************************************************************
2 * Copyright (c) 2012, 2015 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.tracecompass.lttng2.kernel.core.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 @BeforeClass
37 public static void setUpBeforeClass() {
38 }
39
40 @AfterClass
41 public static void tearDownAfterClass() {
42 }
43
44 /**
45 * @throws java.lang.Exception
46 */
47 @Before
48 @Override
49 public void setUp() throws Exception {
50 }
51
52 /**
53 * @throws java.lang.Exception
54 */
55 @After
56 @Override
57 public void tearDown() throws Exception {
58 }
59
60 // ------------------------------------------------------------------------
61 // Tests
62 // ------------------------------------------------------------------------
63
64 /**
65 * Test method for {@link org.eclipse.tracecompass.lttng2.kernel.core.Activator#Activator()}.
66 */
67 @Test
68 public void testActivator() {
69 assertTrue(true);
70 }
71
72 /**
73 * Test method for {@link org.eclipse.tracecompass.lttng2.kernel.core.Activator#getDefault()}.
74 */
75 @Test
76 public void testGetDefault() {
77 assertTrue(true);
78 }
79
80 /**
81 * Test method for {@link org.eclipse.tracecompass.lttng2.kernel.core.Activator#start(org.osgi.framework.BundleContext)}.
82 */
83 @Test
84 public void testStartBundleContext() {
85 assertTrue(true);
86 }
87
88 /**
89 * Test method for {@link org.eclipse.tracecompass.lttng2.kernel.core.Activator#stop(org.osgi.framework.BundleContext)}.
90 */
91 @Test
92 public void testStopBundleContext() {
93 assertTrue(true);
94 }
95
96 }
This page took 0.032315 seconds and 5 git commands to generate.