Update pom.xml files for JUnit tests + add sonar support for LTTng
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng.ui.tests / src / org / eclipse / linuxtools / lttng / ui / tests / AllLTTngUITests.java
1 package org.eclipse.linuxtools.lttng.ui.tests;
2
3 import junit.framework.Test;
4 import junit.framework.TestSuite;
5
6 public class AllLTTngUITests {
7 public static Test suite() {
8 TestSuite suite = new TestSuite(AllLTTngUITests.class.getName());
9 //$JUnit-BEGIN$
10 suite.addTest(org.eclipse.linuxtools.lttng.ui.tests.histogram.AllTests.suite());
11 //$JUnit-END$
12 return suite;
13 }
14 }
This page took 0.035286 seconds and 5 git commands to generate.