• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package test.junit;
2 
3 import junit.framework.Test;
4 import junit.framework.TestSuite;
5 
6 public class Suite3 {
suite()7   public static Test suite() {
8     TestSuite suite = new TestSuite("Suite3");
9     suite.addTest(Suite4.suite());
10     return suite;
11   }
12 }
13