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