1   package com.sourceforge.jpatterns;
2   
3   import com.sourceforge.jpatterns.core.AllCoreTests;
4   import com.sourceforge.jpatterns.core.configuration.AllConfigurationTests;
5   import com.sourceforge.jpatterns.core.configuration.model.AllModelTests;
6   import com.sourceforge.jpatterns.patterns.factory.AllFactoryTests;
7   import com.sourceforge.jpatterns.utils.AllJPatternsUtilsTests;
8   import junit.framework.Test;
9   import junit.framework.TestSuite;
10  import org.apache.log4j.Logger;
11  
12  /**
13   * $Author:: zmicer             $<br/>
14   * $Rev:: 57                    $<br/> * $Date:: 2007-08-23 09:16:37 #$<br/>
15   */
16  public class AllJPatternsTests
17  {
18      /**
19       * Logger instance.
20       */
21      final public static Logger LOG = Logger.getLogger(AllJPatternsTests.class);
22  
23      /**
24       * Makes the test suite with all the tests we would like to check
25       * todo [zmicer]: be sure it contains all the tests we need
26       *
27       * @return the build Test(it is TestSuite instance)
28       */
29      public static Test suite()
30      {
31          TestSuite suite = new TestSuite();
32          suite.addTest(AllModelTests.suite());
33          suite.addTest(AllConfigurationTests.suite());
34          suite.addTest(AllCoreTests.suite());
35          suite.addTest(AllFactoryTests.suite());
36          suite.addTest(AllJPatternsUtilsTests.suite());
37  
38          return suite;
39      }
40  }