1 22 package org.objectweb.petals.jbi.registry; 23 24 import junit.framework.TestCase; 25 26 import org.objectweb.petals.jbi.registry.AbstractEndpoint.EndpointType; 27 28 32 public class ExternalEndpointTest extends TestCase { 33 34 public void testConstructor(){ 35 ExternalEndpoint externalEndpoint = new ExternalEndpoint(new ConsumerEndpoint("test", "0"), "test", "0"); 36 assertEquals(externalEndpoint.getType(), EndpointType.EXTERNAL); 37 } 38 } 39 | Popular Tags |