ctf: Move plugins to their own sub-directory
[deliverable/tracecompass.git] / org.eclipse.tracecompass.lttng2.ust.core.tests / src / org / eclipse / tracecompass / lttng2 / ust / core / tests / ActivatorTest.java
CommitLineData
91fc3690 1/*******************************************************************************
c19380ab 2 * Copyright (c) 2013, 2015 Ericsson
91fc3690
AM
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 * Alexandre Montplaisir - Initial API and implementation
11 *******************************************************************************/
12
9bc60be7 13package org.eclipse.tracecompass.lttng2.ust.core.tests;
91fc3690
AM
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 */
29@SuppressWarnings("javadoc")
30public 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 /**
c19380ab 65 * Test method for {@link org.eclipse.tracecompass.internal.lttng2.ust.core.Activator#Activator()}.
91fc3690
AM
66 */
67 @Test
68 public void testActivator() {
69 assertTrue(true);
70 }
71
72 /**
c19380ab 73 * Test method for {@link org.eclipse.tracecompass.internal.lttng2.ust.core.Activator#getDefault()}.
91fc3690
AM
74 */
75 @Test
76 public void testGetDefault() {
77 assertTrue(true);
78 }
79
80 /**
c19380ab 81 * Test method for {@link org.eclipse.tracecompass.internal.lttng2.ust.core.Activator#start(org.osgi.framework.BundleContext)}.
91fc3690
AM
82 */
83 @Test
84 public void testStartBundleContext() {
85 assertTrue(true);
86 }
87
88 /**
c19380ab 89 * Test method for {@link org.eclipse.tracecompass.internal.lttng2.ust.core.Activator#stop(org.osgi.framework.BundleContext)}.
91fc3690
AM
90 */
91 @Test
92 public void testStopBundleContext() {
93 assertTrue(true);
94 }
95
96}
This page took 0.063998 seconds and 5 git commands to generate.