public void testCreateWire() throws Exception {
Map<String, Object> from = ServiceHelper.createMap(Endpoint.SERVICE_NAME, "test:service",
Endpoint.ENDPOINT_NAME, "endpoint");
Map<String, Object> to = ServiceHelper.createMap(Endpoint.SERVICE_NAME, "test:wired-service",
Endpoint.ENDPOINT_NAME, "endpoint");
Wire wire = ServiceHelper.createWire(from, to);
assertEquals(from, wire.getFrom());
assertEquals(to, wire.getTo());
}