blob: c2d05041f7242afecb6b27195d185a135d15cbb2 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012, 2014 Ericsson
*
* All rights reserved. This program and the accompanying materials are
* made available under the terms of the Eclipse Public License 2.0 which
* accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Francois Chouinard - Initial API and implementation
* Alexandre Montplaisir - Port to JUnit4
*******************************************************************************/
package org.eclipse.tracecompass.lttng2.control.core.tests;
import static org.junit.Assert.assertTrue;
import org.junit.Test;
/**
* Test stubs for the Activator.
*/
public class ActivatorTest {
// ------------------------------------------------------------------------
// Tests
// ------------------------------------------------------------------------
/**
* Test method for {@link org.eclipse.tracecompass.internal.lttng2.control.core.Activator#Activator()}.
*/
@Test
public void testActivator() {
assertTrue(true);
}
/**
* Test method for {@link org.eclipse.tracecompass.internal.lttng2.control.core.Activator#getDefault()}.
*/
@Test
public void testGetDefault() {
assertTrue(true);
}
/**
* Test method for {@link org.eclipse.tracecompass.internal.lttng2.control.core.Activator#start(org.osgi.framework.BundleContext)}.
*/
@Test
public void testStartBundleContext() {
assertTrue(true);
}
/**
* Test method for {@link org.eclipse.tracecompass.internal.lttng2.control.core.Activator#stop(org.osgi.framework.BundleContext)}.
*/
@Test
public void testStopBundleContext() {
assertTrue(true);
}
}