/******************************************************************************* * 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 v1.0 which * accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * 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); } }