Move alltests plugin to the Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.analysis.xml.ui.tests / src / org / eclipse / linuxtools / tmf / analysis / xml / ui / tests / XmlAnalysisUiPluginTest.java
CommitLineData
faf37fd0 1/*******************************************************************************
e11e382c 2 * Copyright (c) 2013, 2014 École Polytechnique de Montréal
faf37fd0
GB
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
13package org.eclipse.linuxtools.tmf.analysis.xml.ui.tests;
14
15import static org.junit.Assert.assertEquals;
16
17import org.eclipse.linuxtools.internal.tmf.analysis.xml.ui.Activator;
18import org.junit.Test;
19
20/**
e11e382c 21 * Test the XML Analysis UI plug-in activator
faf37fd0
GB
22 *
23 * @author Geneviève Bastien
24 */
25public 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.linuxtools.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.040212 seconds and 5 git commands to generate.