analysis: Move plugins to their own sub-directory
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.core.tests / src / org / eclipse / tracecompass / tmf / core / tests / statesystem / mipmap / AllTests.java
CommitLineData
8e364f8e 1/*******************************************************************************
2c7fb5af 2 * Copyright (c) 2013, 2015 Ericsson
8e364f8e
PT
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 * Patrick Tasse - Updates to mipmap feature
11 *******************************************************************************/
12
2bdf0193 13package org.eclipse.tracecompass.tmf.core.tests.statesystem.mipmap;
8e364f8e 14
2bdf0193
AM
15import org.eclipse.tracecompass.tmf.core.tests.statesystem.mipmap.TmfMipmapStateProviderTest;
16import org.eclipse.tracecompass.tmf.core.tests.statesystem.mipmap.TmfMipmapStateProviderWeightedTest;
8e364f8e
PT
17import org.junit.runner.RunWith;
18import org.junit.runners.Suite;
19
20/**
2c7fb5af 21 * Test suite for org.eclipse.tracecompass.tmf.core.statesystem.mipmap
8e364f8e
PT
22 */
23@RunWith(Suite.class)
24@Suite.SuiteClasses({
25 TmfMipmapStateProviderTest.class,
26 TmfMipmapStateProviderWeightedTest.class,
27})
28public class AllTests {
29
30}
This page took 0.069765 seconds and 5 git commands to generate.