blob: 2c544609c6e074eb171bf780ffecc7fc94488dd5 [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.ui.tests.project.model;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
/**
* Test suite for org.eclipse.linuxtools.tmf.ui.project.model
*/
@RunWith(Suite.class)
@Suite.SuiteClasses({
ProjectModelAnalysisTest.class,
ProjectModelOutputTest.class,
ProjectModelTraceTest.class,
TraceAndExperimentTypeTest.class
})
public class AllTests {
}