lttng: Add a common plugin for LTTng
[deliverable/tracecompass.git] / lttng / org.eclipse.tracecompass.lttng2.common.core.tests / src / org / eclipse / tracecompass / lttng2 / common / core / tests / ActivatorTest.java
1 /*******************************************************************************
2 * Copyright (c) 2016 École Polytechnique de Montréal
3 *
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
8 *******************************************************************************/
9
10 package org.eclipse.tracecompass.lttng2.common.core.tests;
11
12 import static org.junit.Assert.assertNotNull;
13
14 import org.eclipse.tracecompass.internal.lttng2.common.core.Activator;
15 import org.junit.Test;
16
17 /**
18 * <b><u>ActivatorTest</u></b>
19 * <p>
20 * Test suite for the Activator class
21 * <p>
22 */
23 public class ActivatorTest {
24
25 /**
26 * Test method for {@link Activator#getDefault()}.
27 */
28 @Test
29 public void testGetDefault() {
30 Activator activator = Activator.getDefault();
31 assertNotNull(activator);
32 }
33 }
This page took 0.032059 seconds and 5 git commands to generate.