Ctf: Correct endianness when reading ctf integers
[deliverable/tracecompass.git] / org.eclipse.linuxtools.ctf.core.tests / src / org / eclipse / linuxtools / ctf / core / tests / types / TestAll.java
1 /*******************************************************************************
2 * Copyright (c) 2013 Ericsson
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
12 package org.eclipse.linuxtools.ctf.core.tests.types;
13
14 import org.junit.runner.RunWith;
15 import 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.
21 *
22 * @author ematkho
23 * @version $Revision: 1.0 $
24 */
25 @RunWith(Suite.class)
26 @Suite.SuiteClasses({
27 ArrayDeclarationTest.class,
28 ArrayDefinitionTest.class,
29 DefinitionTest.class,
30 EnumDeclarationTest.class,
31 EnumDefinitionTest.class,
32 EventDeclarationTest.class,
33 FloatDeclarationTest.class,
34 FloatDefinitionTest.class,
35 IntegerDeclarationTest.class,
36 IntegerDefinitionTest.class,
37 IntegerEndiannessTest.class,
38 SequenceDeclarationTest.class,
39 SequenceDefinitionTest.class,
40 StringDeclarationTest.class,
41 StringDefinitionTest.class,
42 StructDeclarationTest.class,
43 StructDefinitionTest.class,
44 VariantDeclarationTest.class,
45 VariantDefinitionTest.class,
46 })
47 public class TestAll {
48
49 }
This page took 0.033366 seconds and 6 git commands to generate.