e502b828582a12177fda42524ab38fb6d9680d7f
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.core.tests / src / org / eclipse / linuxtools / lttng2 / core / tests / control / model / impl / AllTests.java
1 /*******************************************************************************
2 * Copyright (c) 2011 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 * Bernd Hufmann - Initial API and implementation
11 *******************************************************************************/
12 package org.eclipse.linuxtools.lttng2.core.tests.control.model.impl;
13
14 import junit.framework.Test;
15 import junit.framework.TestSuite;
16
17 @SuppressWarnings("javadoc")
18 public class AllTests {
19
20 public static Test suite() {
21
22 TestSuite suite = new TestSuite(AllTests.class.getName());
23 //$JUnit-BEGIN$
24 suite.addTestSuite(FieldInfoTest.class);
25 suite.addTestSuite(BaseEventInfoTest.class);
26 suite.addTestSuite(DomainInfoTest.class);
27 suite.addTestSuite(EventInfoTest.class);
28 suite.addTestSuite(ProbeEventInfoTest.class);
29 suite.addTestSuite(ChannelInfoTest.class);
30 suite.addTestSuite(SessionInfoTest.class);
31 suite.addTestSuite(TraceInfoTest.class);
32 suite.addTestSuite(UstProviderInfoTest.class);
33 //$JUnit-END$
34 return suite;
35 }
36 }
This page took 0.030222 seconds and 5 git commands to generate.