All Downloads are FREE. Search and download functionalities are using the official Maven repository.

test.tck.factory.FactoryTestSuite Maven / Gradle / Ivy

There is a newer version: 1.3.0-91
Show newest version
package test.tck.factory;

import junit.framework.*;

/**
 * 

Title: TCK

*

Description: JAIN SIP 1.1 Technology Compatibility Kit

* @author Emil Ivov * Network Research Team, Louis Pasteur University, Strasbourg, France * This code is in the public domain. * @version 1.0 */ public class FactoryTestSuite extends TestSuite { public FactoryTestSuite(String name) { super(name); addTestSuite(AddressFactoryTest.class); addTestSuite(HeaderFactoryTest.class); addTestSuite(MessageFactoryTest.class); } public static Test suite() { return new FactoryTestSuite("FactoryTestSuite"); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy