common: Move plugins to their own sub-directory
[deliverable/tracecompass.git] / org.eclipse.tracecompass.statesystem.core.tests / src / org / eclipse / tracecompass / statesystem / core / tests / AllTests.java
CommitLineData
f606c6fa 1/*******************************************************************************
8bde24de 2 * Copyright (c) 2014, 2015 Ericsson
f606c6fa
MK
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 * Alexandre Montplaisir - Initial API and implementation
8bde24de 11 * Patrick Tasse - Enable StateSystemUtils tests
bcec0116 12 *******************************************************************************/
f606c6fa 13
e894a508 14package org.eclipse.tracecompass.statesystem.core.tests;
f606c6fa
MK
15
16import org.junit.runner.RunWith;
17import org.junit.runners.Suite;
18
19/**
bcec0116 20 * Master test suite
f606c6fa
MK
21 */
22@RunWith(Suite.class)
23@Suite.SuiteClasses({
f0247a1a 24 StateSystemPushPopTest.class,
8bde24de 25 StateSystemUtilsTest.class,
f0247a1a
NE
26 org.eclipse.tracecompass.statesystem.core.tests.backend.AllTests.class,
27 org.eclipse.tracecompass.statesystem.core.tests.statevalue.AllTests.class
f606c6fa
MK
28})
29public class AllTests {
30
bcec0116 31}
This page took 0.051383 seconds and 5 git commands to generate.