01: package test.tck.factory;
02:
03: import junit.framework.*;
04:
05: /**
06: * <p>Title: TCK</p>
07: * <p>Description: JAIN SIP 1.1 Technology Compatibility Kit</p>
08: * @author Emil Ivov
09: * Network Research Team, Louis Pasteur University, Strasbourg, France
10: * This code is in the public domain.
11: * @version 1.0
12: */
13:
14: public class FactoryTestSuite extends TestSuite {
15:
16: public FactoryTestSuite(String name) {
17: super (name);
18: addTestSuite(AddressFactoryTest.class);
19: addTestSuite(HeaderFactoryTest.class);
20: addTestSuite(MessageFactoryTest.class);
21: }
22:
23: public static Test suite() {
24: return new FactoryTestSuite("FactoryTestSuite");
25: }
26:
27: }
|