Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: ab6fe78934f204c3d5502cdc741e7322fb8d2770 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.eclipse.linuxtools.lttng.ui.tests;

import junit.framework.Test;
import junit.framework.TestSuite;

public class AllLTTngUITests  {
    public static Test suite() {
        TestSuite suite = new TestSuite(AllLTTngUITests.class.getName());
        //$JUnit-BEGIN$
        suite.addTest(org.eclipse.linuxtools.lttng.ui.tests.distribution.AllTests.suite());
        suite.addTest(org.eclipse.linuxtools.lttng.ui.tests.histogram.AllTests.suite());
        //$JUnit-END$
        return suite;
    }
}

Back to the top