lttng: Add a diagram showing the dependencies between plugins
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.core.tests / src / org / eclipse / linuxtools / lttng2 / core / tests / ActivatorTest.java
CommitLineData
268c6ff3 1/*******************************************************************************
2ba3d0a1 2 * Copyright (c) 2012, 2013 Ericsson
b0318660 3 *
268c6ff3
FC
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
b0318660 8 *
268c6ff3
FC
9 * Contributors:
10 * Francois Chouinard - Initial API and implementation
2ba3d0a1 11 * Alexandre Montplaisir - Port to JUnit4
268c6ff3
FC
12 *******************************************************************************/
13
14package org.eclipse.linuxtools.lttng2.core.tests;
15
2ba3d0a1 16import static org.junit.Assert.assertTrue;
268c6ff3 17
268c6ff3
FC
18import org.junit.Test;
19
20/**
2ba3d0a1 21 * Test stubs for the Activator.
268c6ff3 22 */
2ba3d0a1 23public class ActivatorTest {
268c6ff3
FC
24
25 // ------------------------------------------------------------------------
26 // Tests
27 // ------------------------------------------------------------------------
28
29 /**
2ba3d0a1 30 * Test method for {@link org.eclipse.linuxtools.internal.lttng2.core.Activator#Activator()}.
268c6ff3
FC
31 */
32 @Test
33 public void testActivator() {
34 assertTrue(true);
35 }
36
37 /**
2ba3d0a1 38 * Test method for {@link org.eclipse.linuxtools.internal.lttng2.core.Activator#getDefault()}.
268c6ff3
FC
39 */
40 @Test
41 public void testGetDefault() {
42 assertTrue(true);
43 }
44
45 /**
2ba3d0a1 46 * Test method for {@link org.eclipse.linuxtools.internal.lttng2.core.Activator#start(org.osgi.framework.BundleContext)}.
268c6ff3
FC
47 */
48 @Test
49 public void testStartBundleContext() {
50 assertTrue(true);
51 }
52
53 /**
2ba3d0a1 54 * Test method for {@link org.eclipse.linuxtools.internal.lttng2.core.Activator#stop(org.osgi.framework.BundleContext)}.
268c6ff3
FC
55 */
56 @Test
57 public void testStopBundleContext() {
58 assertTrue(true);
59 }
60
61}
This page took 0.043415 seconds and 5 git commands to generate.