Add some more model test cases for LTTng 2.0 control
[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
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 *******************************************************************************/
115b4a01 12package org.eclipse.linuxtools.lttng2.ui.tests.control.model.component;
eb1bab5b
BH
13
14import junit.framework.Test;
15import junit.framework.TestSuite;
16
17public class AllTests {
18
19 public static Test suite() {
20
21 TestSuite suite = new TestSuite(AllTests.class.getName());
22 //$JUnit-BEGIN$
23 suite.addTestSuite(TraceControlComponentTest.class);
24 suite.addTestSuite(TraceControlTreeModelTest.class);
a26d90be
BH
25 suite.addTestSuite(TraceControlKernelProviderTests.class);
26 suite.addTestSuite(TraceControlUstProviderTests.class);
27 suite.addTestSuite(TraceControlKernelSessionTests.class);
28 suite.addTestSuite(TraceControlUstSessionTests.class);
06b9339e 29 suite.addTestSuite(TraceControlPropertiesTest.class);
eb1bab5b
BH
30 //$JUnit-END$
31 return new ModelImplTestSetup(suite);
32 }
33}
This page took 0.028883 seconds and 5 git commands to generate.