* @version $$Rev: 441935 $$ $$Date: 2006-09-10 02:57:47 -0700 (Sun, 10 Sep 2006) $$
*/
public class SystemServiceComponentWireTestCase extends TestCase {
public void testServiceContext() throws NoSuchMethodException {
Target target = new TargetImpl();
SystemOutboundWire outboundWire = EasyMock.createMock(SystemOutboundWire.class);
EasyMock.expect(outboundWire.getTargetService()).andReturn(target);
EasyMock.replay(outboundWire);
SystemInboundWire wire = new SystemInboundWireImpl("Target", Target.class);
SystemService serviceContext = new SystemServiceImpl("service", null);