1 package com.sourceforge.jpatterns.patterns.factory;
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 */
11 public class AllFactoryTests
12 {
13 /**
14 * Logger instance.
15 */
16 final public static Logger LOG = Logger.getLogger(AllFactoryTests.class);
17
18 /**
19 * Contains all the factory based tests
20 *
21 * @return the build Test(it is TestSuite instance)
22 */
23 public static Test suite()
24 {
25 TestSuite suite = new TestSuite();
26
27 return suite;
28 }
29 }