1 22 package org.objectweb.petals.jbi.registry; 23 24 import javax.xml.namespace.QName ; 25 26 import junit.framework.TestCase; 27 28 import org.objectweb.petals.jbi.registry.AbstractEndpoint.EndpointType; 29 30 34 public class InternalEndpointTest extends TestCase{ 35 36 public void testConstructor(){ 37 InternalEndpoint internalEndpoint = new InternalEndpoint(new QName ("test"), "endpoint", "compo", "0", null); 38 assertEquals(internalEndpoint.getType(), EndpointType.INTERNAL); 39 } 40 } 41 | Popular Tags |