Add support for UST-only nodes in Control View (Bug 388477)
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.ui.tests / src / org / eclipse / linuxtools / lttng2 / ui / tests / control / model / component / AllTests.java
CommitLineData
eb1bab5b
BH
1/*******************************************************************************
2 * Copyright (c) 2011 Ericsson
cfdb727a 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
cfdb727a 8 *
eb1bab5b
BH
9 * Contributors:
10 * Bernd Hufmann - Initial API and implementation
11 *******************************************************************************/
115b4a01 12package org.eclipse.linuxtools.lttng2.ui.tests.control.model.component;
eb1bab5b
BH
13
14import junit.framework.Test;
15import junit.framework.TestSuite;
16
cfdb727a 17@SuppressWarnings("javadoc")
eb1bab5b
BH
18public class AllTests {
19
20 public static Test suite() {
cfdb727a 21
eb1bab5b
BH
22 TestSuite suite = new TestSuite(AllTests.class.getName());
23 //$JUnit-BEGIN$
24 suite.addTestSuite(TraceControlComponentTest.class);
25 suite.addTestSuite(TraceControlTreeModelTest.class);
a07c7629 26 suite.addTestSuite(TraceControlTreeModelNoProvidersTest.class);
a26d90be
BH
27 suite.addTestSuite(TraceControlKernelProviderTests.class);
28 suite.addTestSuite(TraceControlUstProviderTests.class);
29 suite.addTestSuite(TraceControlKernelSessionTests.class);
30 suite.addTestSuite(TraceControlUstSessionTests.class);
06b9339e 31 suite.addTestSuite(TraceControlPropertiesTest.class);
eb1bab5b
BH
32 //$JUnit-END$
33 return new ModelImplTestSetup(suite);
34 }
35}
This page took 0.031094 seconds and 5 git commands to generate.