gdbtrace: Move plugins to the Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.control.core.tests / src / org / eclipse / linuxtools / lttng2 / control / core / tests / ActivatorTest.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 * Francois Chouinard - Initial API and implementation
11 * Alexandre Montplaisir - Port to JUnit4
12 *******************************************************************************/
13
14 package org.eclipse.linuxtools.lttng2.control.core.tests;
15
16 import static org.junit.Assert.assertTrue;
17
18 import org.junit.Test;
19
20 /**
21 * Test stubs for the Activator.
22 */
23 public class ActivatorTest {
24
25 // ------------------------------------------------------------------------
26 // Tests
27 // ------------------------------------------------------------------------
28
29 /**
30 * Test method for {@link org.eclipse.linuxtools.internal.lttng2.control.core.Activator#Activator()}.
31 */
32 @Test
33 public void testActivator() {
34 assertTrue(true);
35 }
36
37 /**
38 * Test method for {@link org.eclipse.linuxtools.internal.lttng2.control.core.Activator#getDefault()}.
39 */
40 @Test
41 public void testGetDefault() {
42 assertTrue(true);
43 }
44
45 /**
46 * Test method for {@link org.eclipse.linuxtools.internal.lttng2.control.core.Activator#start(org.osgi.framework.BundleContext)}.
47 */
48 @Test
49 public void testStartBundleContext() {
50 assertTrue(true);
51 }
52
53 /**
54 * Test method for {@link org.eclipse.linuxtools.internal.lttng2.control.core.Activator#stop(org.osgi.framework.BundleContext)}.
55 */
56 @Test
57 public void testStopBundleContext() {
58 assertTrue(true);
59 }
60
61 }
This page took 0.066746 seconds and 5 git commands to generate.