analysis: Move plugins to their own sub-directory
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.ui.tests / src / org / eclipse / tracecompass / tmf / ui / tests / trace / AllTests.java
CommitLineData
13201b83 1/*******************************************************************************
ed902a2b 2 * Copyright (c) 2013, 2014 Ericsson
13201b83
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 * Matthew Khouzam - Initial API and implementation
11 *******************************************************************************/
12
2bdf0193 13package org.eclipse.tracecompass.tmf.ui.tests.trace;
eb8ea213
MK
14
15import org.junit.runner.RunWith;
16import org.junit.runners.Suite;
17
18/**
032ecd45 19 * Test suite for custom parsers
eb8ea213
MK
20 * @author Matthew Khouzam
21 *
22 */
23@RunWith(Suite.class)
24@Suite.SuiteClasses({
25 CustomXmlTraceInvalidTest.class,
26 CustomXmlTraceBadlyFormedTest.class,
032ecd45
MAL
27 CustomXmlTraceValidTest.class,
28 CustomXmlIndexTest.class,
29 CustomTxtIndexTest.class
eb8ea213
MK
30})
31public class AllTests {
32}
This page took 0.096097 seconds and 5 git commands to generate.