tmf: Fix GTK bug when setting top item after changing tree font
[deliverable/tracecompass.git] / ctf / org.eclipse.tracecompass.ctf.core.tests / src / org / eclipse / tracecompass / ctf / core / tests / types / TestAll.java
CommitLineData
4bd7f2db 1/*******************************************************************************
ed902a2b 2 * Copyright (c) 2013, 2014 Ericsson
4bd7f2db
AM
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 * Matthew Khouzam - Initial API and implementation
10 *******************************************************************************/
11
f357bcd4 12package org.eclipse.tracecompass.ctf.core.tests.types;
866e5b51 13
866e5b51
FC
14import org.junit.runner.RunWith;
15import org.junit.runners.Suite;
16
17/**
18 * The class <code>TestAll</code> builds a suite that can be used to run all of
19 * the tests within its package as well as within any subpackages of its
20 * package.
51209785 21 *
866e5b51
FC
22 * @author ematkho
23 * @version $Revision: 1.0 $
24 */
25@RunWith(Suite.class)
c9fe9175 26@Suite.SuiteClasses({
7b4f13e6
MK
27 ArrayDeclaration2Test.class,
28 ArrayDefinition2Test.class,
c9fe9175
AM
29 DefinitionTest.class,
30 EnumDeclarationTest.class,
31 EnumDefinitionTest.class,
32 EventDeclarationTest.class,
6c7592e1 33 EventHeaderDeclarationTest.class,
c9fe9175
AM
34 FloatDeclarationTest.class,
35 FloatDefinitionTest.class,
36 IntegerDeclarationTest.class,
37 IntegerDefinitionTest.class,
3edb91f3 38 IntegerEndiannessTest.class,
7b4f13e6
MK
39 SequenceDeclaration2Test.class,
40 SequenceDefinition2Test.class,
c9fe9175
AM
41 StringDeclarationTest.class,
42 StringDefinitionTest.class,
43 StructDeclarationTest.class,
44 StructDefinitionTest.class,
45 VariantDeclarationTest.class,
46 VariantDefinitionTest.class,
47})
866e5b51
FC
48public class TestAll {
49
866e5b51 50}
This page took 0.067815 seconds and 5 git commands to generate.