blob: 8cd8198c2278b4c2c73b26cf64271e1021fcc340 [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
*******************************************************************************/
package org.eclipse.tracecompass.lttng2.control.ui.tests;
import static org.junit.Assert.assertTrue;
import org.junit.Test;
/**
* Test suite for the Activator class
*/
public class ActivatorTest {
// ------------------------------------------------------------------------
// Tests
// ------------------------------------------------------------------------
/**
* Test method for {@link org.eclipse.tracecompass.internal.lttng2.control.ui.Activator#Activator}.
*/
@Test
public void testActivator() {
assertTrue(true);
}
/**
* Test method for {@link org.eclipse.tracecompass.internal.lttng2.control.ui.Activator#getDefault}.
*/
@Test
public void testGetDefault() {
assertTrue(true);
}
/**
* Test method for {@link org.eclipse.tracecompass.internal.lttng2.control.ui.Activator#start}.
*/
@Test
public void testStartBundleContext() {
assertTrue(true);
}
/**
* Test method for {@link org.eclipse.tracecompass.internal.lttng2.control.ui.Activator#stop}.
*/
@Test
public void testStopBundleContext() {
assertTrue(true);
}
}