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