1   package com.sourceforge.jpatterns.core;
2   
3   import junit.framework.Test;
4   import junit.framework.TestSuite;
5   import org.apache.log4j.Logger;
6   
7   /**
8    * $Author:: zmicer             $<br/>
9    * $Rev:: 57                    $<br/> * $Date:: 2007-08-23 09:16:37 #$<br/>
10   * $Date:: 2007-08-23 09:16:37 #$<br/>
11   */
12  public class AllCoreTests
13  {
14      /**
15       * Logger instance.
16       */
17      final public static Logger LOG = Logger.getLogger(AllCoreTests.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      public static Test suite()
24      {
25          TestSuite suite = new TestSuite();
26          suite.addTestSuite(JPConstantsTest.class);
27          suite.addTestSuite(JPEngineFactoryTest.class);
28          suite.addTestSuite(JPExceptionTest.class);
29  
30          return suite;
31      }
32  }