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