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