tmf : add a mipmap section in the developer guide
[deliverable/tracecompass.git] / org.eclipse.linuxtools.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/**
19 * Test suite for Xml parser validation
20 * @author Matthew Khouzam
21 *
22 */
23@RunWith(Suite.class)
24@Suite.SuiteClasses({
25 CustomXmlTraceInvalidTest.class,
26 CustomXmlTraceBadlyFormedTest.class,
27 CustomXmlTraceValidTest.class
28})
29public class AllTests {
30}
This page took 0.029594 seconds and 5 git commands to generate.