@Test
public void testSalesOrderShipmentGetCarriers() throws RemoteException
{
when(port.salesOrderShipmentGetCarriers(anyString(), eq(ORDER_ID))) //
.thenReturn(new AssociativeEntity[]{new AssociativeEntity("FDX", "Fedex Express")});
assertEquals(Collections.singletonList(new Carrier("FDX", "Fedex Express")),
connector.getOrderShipmentCarriers(ORDER_ID));
}