lttng: Fix Javadoc and formatting in lttng2.ui
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.ui.tests / src / org / eclipse / linuxtools / lttng2 / ui / tests / control / model / component / 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.ui.tests.control.model.component;
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(TraceControlComponentTest.class);
25 suite.addTestSuite(TraceControlTreeModelTest.class);
26 suite.addTestSuite(TraceControlKernelProviderTests.class);
27 suite.addTestSuite(TraceControlUstProviderTests.class);
28 suite.addTestSuite(TraceControlKernelSessionTests.class);
29 suite.addTestSuite(TraceControlUstSessionTests.class);
30 suite.addTestSuite(TraceControlPropertiesTest.class);
31 //$JUnit-END$
32 return new ModelImplTestSetup(suite);
33 }
34 }
This page took 0.031196 seconds and 5 git commands to generate.