Add support for filter feature of LTTng Tools 2.1
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.core.tests / src / org / eclipse / linuxtools / lttng2 / core / tests / control / model / impl / AllTests.java
CommitLineData
eb1bab5b
BH
1/*******************************************************************************
2 * Copyright (c) 2011 Ericsson
b0318660 3 *
eb1bab5b
BH
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
b0318660 8 *
eb1bab5b
BH
9 * Contributors:
10 * Bernd Hufmann - Initial API and implementation
11 *******************************************************************************/
9315aeee 12package org.eclipse.linuxtools.lttng2.core.tests.control.model.impl;
eb1bab5b
BH
13
14import junit.framework.Test;
15import junit.framework.TestSuite;
16
b0318660 17@SuppressWarnings("javadoc")
eb1bab5b
BH
18public class AllTests {
19
20 public static Test suite() {
b0318660 21
eb1bab5b
BH
22 TestSuite suite = new TestSuite(AllTests.class.getName());
23 //$JUnit-BEGIN$
d4514365 24 suite.addTestSuite(FieldInfoTest.class);
eb1bab5b
BH
25 suite.addTestSuite(BaseEventInfoTest.class);
26 suite.addTestSuite(DomainInfoTest.class);
27 suite.addTestSuite(EventInfoTest.class);
d132bcc7 28 suite.addTestSuite(ProbeEventInfoTest.class);
eb1bab5b
BH
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.058855 seconds and 5 git commands to generate.