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 33 public class ConsumerEndpointTest extends TestCase { 34 35 public void testConstructor() { 36 ConsumerEndpoint consumerEndpoint = new ConsumerEndpoint("test", "0"); 37 assertEquals(consumerEndpoint.getType(), EndpointType.CONSUMER); 38 } 39 40 } 41 | Popular Tags |