01: package test.junit.testsetup;
02:
03: import junit.framework.Test;
04: import junit.framework.TestSuite;
05:
06: public class SmokeSuite extends LoggingTestSuite {
07: public static void main(String[] args) {
08: junit.textui.TestRunner.run(suite());
09: }
10:
11: public static Test suite() {
12: TestSuite suite = new TestSuite("Smoke Test Suite");
13:
14: suite.addTest(LayerATestSuite.suite());
15:
16: return suite;
17: }
18:
19: // public SmokeSuite()
20: // {
21: // this("SmokeSuite");
22: // }
23:
24: public SmokeSuite(String name) {
25: super(name);
26: }
27: }
|