~ubuntu-branches/ubuntu/trusty/eclipse-linuxtools/trusty

« back to all changes in this revision

Viewing changes to systemtap/org.eclipse.linuxtools.systemtap.ui.consolelog.tests/src/org/eclipse/linuxtools/systemtap/ui/consolelog/test/AllTests.java

  • Committer: Package Import Robot
  • Author(s): tony mancill
  • Date: 2013-05-13 21:43:22 UTC
  • mfrom: (1.2.1) (2.1.2 experimental)
  • Revision ID: package-import@ubuntu.com-20130513214322-6frgd9du1n0w2uo7
Tags: 1.2.1-1
* Team upload.
* New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
 
14
14
import org.eclipse.linuxtools.systemtap.ui.consolelog.test.structures.ConsoleStreamDaemonTest;
15
15
import org.eclipse.linuxtools.systemtap.ui.consolelog.test.structures.ErrorStreamDaemonTest;
16
 
import org.eclipse.linuxtools.systemtap.ui.consolelog.test.structures.ErrorTableDisplayTest;
17
16
import org.eclipse.linuxtools.systemtap.ui.consolelog.test.structures.ScriptConsoleTest;
18
 
import org.eclipse.linuxtools.systemtap.ui.consolelog.test.views.ErrorViewTest;
19
 
 
20
 
import junit.framework.Test;
21
 
import junit.framework.TestSuite;
22
 
 
 
17
import org.junit.runner.RunWith;
 
18
import org.junit.runners.Suite;
 
19
 
 
20
@RunWith(Suite.class)
 
21
@Suite.SuiteClasses({ ConsoleStreamDaemonTest.class,
 
22
                ErrorStreamDaemonTest.class, ScriptConsoleTest.class })
23
23
public class AllTests {
24
 
        public static Test suite() {
25
 
                TestSuite suite = new TestSuite("Test for org.eclipse.linuxtools.systemtap.ui.consolelog.test");
26
 
 
27
 
                //Structures
28
 
                suite.addTestSuite(ConsoleStreamDaemonTest.class);
29
 
                suite.addTestSuite(ErrorStreamDaemonTest.class);
30
 
                suite.addTestSuite(ErrorTableDisplayTest.class);
31
 
                suite.addTestSuite(ScriptConsoleTest.class);
32
 
 
33
 
                //views
34
 
                suite.addTestSuite(ErrorViewTest.class);
35
 
                
36
 
                return suite;
37
 
        }
38
24
}