public void Setup()
 {
     _order = new Order();
     _mockNotifier = new Moq.Mock<INotify>();
     _orderProcessor =
         new OrderProcessor(_mockNotifier.Object);
 }
 public void Ship(Order order)
 {
     if (order.NotifyCustomerOfShipment)   _notify.Notify(order);
 }