tmf: Move plugins to their own sub-directory
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.analysis.xml.ui.tests / src / org / eclipse / tracecompass / tmf / analysis / xml / ui / tests / XmlAnalysisUiPluginTest.java
1 /*******************************************************************************
2 * Copyright (c) 2013, 2015 É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 * Contributors:
10 * Geneviève Bastien - Initial API and implementation
11 *******************************************************************************/
12
13 package org.eclipse.tracecompass.tmf.analysis.xml.ui.tests;
14
15 import static org.junit.Assert.assertEquals;
16
17 import org.eclipse.tracecompass.internal.tmf.analysis.xml.ui.Activator;
18 import org.junit.Test;
19
20 /**
21 * Test the XML Analysis UI plug-in activator
22 *
23 * @author Geneviève Bastien
24 */
25 public class XmlAnalysisUiPluginTest {
26 // ------------------------------------------------------------------------
27 // Attributes
28 // ------------------------------------------------------------------------
29
30 // Plug-in instantiation
31 static final Activator fPlugin = new Activator();
32
33 // ------------------------------------------------------------------------
34 // Test cases
35 // ------------------------------------------------------------------------
36
37 /**
38 * Test the plugin ID.
39 */
40 @Test
41 public void testTmfCorePluginId() {
42 assertEquals("Plugin ID", "org.eclipse.tracecompass.tmf.analysis.xml.ui", Activator.PLUGIN_ID);
43 }
44
45 /**
46 * Test the getDefault() static method.
47 */
48 @Test
49 public void testGetDefault() {
50 Activator plugin = Activator.getDefault();
51 assertEquals("getDefault()", plugin, fPlugin);
52 }
53 }
This page took 0.041937 seconds and 5 git commands to generate.