Move alltests plugin to the Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.ui.tests / src / org / eclipse / linuxtools / tmf / ui / tests / trace / AllTests.java
CommitLineData
13201b83
MK
1/*******************************************************************************
2 * Copyright (c) 2013 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 * Matthew Khouzam - Initial API and implementation
11 *******************************************************************************/
12
eb8ea213
MK
13package org.eclipse.linuxtools.tmf.ui.tests.trace;
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.039033 seconds and 5 git commands to generate.