blob: 1637d173ee0adbd8b8593a8c4da8157e28bb7385 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013, 2014 École Polytechnique de Montréal
*
* 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:
* Geneviève Bastien - Initial API and implementation
*******************************************************************************/
package org.eclipse.tracecompass.tmf.analysis.xml.ui.tests;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
/**
* Master test suite for TMF XML Analysis UI plug-in.
*/
@RunWith(Suite.class)
@Suite.SuiteClasses({
XmlAnalysisUiPluginTest.class,
org.eclipse.tracecompass.tmf.analysis.xml.ui.tests.module.AllTests.class
})
public class AllAnalysisXmlUiTests {
}