Copyright header update, 2015 edition
[deliverable/tracecompass.git] / org.eclipse.tracecompass.lttng2.kernel.core.tests / src / org / eclipse / tracecompass / lttng2 / kernel / core / tests / ActivatorTest.java
CommitLineData
268c6ff3 1/*******************************************************************************
ed902a2b 2 * Copyright (c) 2012, 2014 Ericsson
e743c3b8 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
e743c3b8 8 *
268c6ff3
FC
9 * Contributors:
10 * Francois Chouinard - Initial API and implementation
11 *******************************************************************************/
12
9bc60be7 13package org.eclipse.tracecompass.lttng2.kernel.core.tests;
268c6ff3
FC
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 */
e743c3b8 29@SuppressWarnings("javadoc")
268c6ff3
FC
30public class ActivatorTest extends TestCase {
31
32 // ------------------------------------------------------------------------
33 // JUnit
34 // ------------------------------------------------------------------------
35
268c6ff3 36 @BeforeClass
ea21cd65 37 public static void setUpBeforeClass() {
268c6ff3
FC
38 }
39
268c6ff3 40 @AfterClass
ea21cd65 41 public static void tearDownAfterClass() {
268c6ff3
FC
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 /**
65 * Test method for {@link org.eclipse.linuxtools.lttng2.kernel.core.Activator#Activator()}.
66 */
67 @Test
68 public void testActivator() {
69 assertTrue(true);
70 }
71
72 /**
73 * Test method for {@link org.eclipse.linuxtools.lttng2.kernel.core.Activator#getDefault()}.
74 */
75 @Test
76 public void testGetDefault() {
77 assertTrue(true);
78 }
79
80 /**
81 * Test method for {@link org.eclipse.linuxtools.lttng2.kernel.core.Activator#start(org.osgi.framework.BundleContext)}.
82 */
83 @Test
84 public void testStartBundleContext() {
85 assertTrue(true);
86 }
87
88 /**
89 * Test method for {@link org.eclipse.linuxtools.lttng2.kernel.core.Activator#stop(org.osgi.framework.BundleContext)}.
90 */
91 @Test
92 public void testStopBundleContext() {
93 assertTrue(true);
94 }
95
96}
This page took 0.066004 seconds and 5 git commands to generate.