First part of LTTng 2.0 support
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng.ui.tests / src / org / eclipse / linuxtools / lttng / ui / tests / AllLTTngUITests.java
CommitLineData
422f0fb8
BH
1package org.eclipse.linuxtools.lttng.ui.tests;
2
3import junit.framework.Test;
4import junit.framework.TestSuite;
5
6public class AllLTTngUITests {
7 public static Test suite() {
8 TestSuite suite = new TestSuite(AllLTTngUITests.class.getName());
9 //$JUnit-BEGIN$
eb1bab5b
BH
10 suite.addTest(org.eclipse.linuxtools.lttng.ui.tests.control.model.impl.AllTests.suite());
11 suite.addTest(org.eclipse.linuxtools.lttng.ui.tests.control.service.AllTests.suite());
422f0fb8 12 suite.addTest(org.eclipse.linuxtools.lttng.ui.tests.histogram.AllTests.suite());
eb1bab5b 13 suite.addTest(org.eclipse.linuxtools.lttng.ui.tests.control.model.component.AllTests.suite());
422f0fb8
BH
14 //$JUnit-END$
15 return suite;
16 }
17}
This page took 0.027849 seconds and 5 git commands to generate.