1   package com.sourceforge.jpatterns.utils;
2   
3   import com.sourceforge.jpatterns.utils.junit.JPatternsTestUtilsTest;
4   import junit.framework.Test;
5   import junit.framework.TestSuite;
6   import org.apache.log4j.Logger;
7   
8   /**
9    * $Author:: zmicer             $<br/>
10   * $Rev:: 57                    $<br/> * $Date:: 2007-08-23 09:16:37 #$<br/>
11   */
12  public class AllJPatternsUtilsTests
13  {
14      /**
15       * Logger instance.
16       */
17      final public static Logger LOG = Logger.getLogger(AllJPatternsUtilsTests.class);
18  
19      /**
20       * Makes the test suite with all the tests we would like to check
21       * @return the build Test(it is TestSuite instance)
22       *
23       * note: [zmicer] please check if it is up to date composition and extend if it is necessary
24       */
25      public static Test suite()
26      {
27          TestSuite suite = new TestSuite();
28          // tests for the test utils
29          suite.addTestSuite(JPatternsTestUtilsTest.class);
30          // tests for the normal functionality
31          suite.addTestSuite(CastorUtilsTest.class);
32          suite.addTestSuite(JPatternsPropsUtilsTest.class);
33  
34          return suite;
35      }
36  }