/// <summary>
 /// Initializes a new instance of the <see cref="ShipTimeControllerTest"/> class.
 /// </summary>
 public ShipTimeControllerTest()
 {
     this.shipTimeManager = new Mock<IShipTimeManager>();
     this.controller = new ShipTimeController(this.shipTimeManager.Object);
     this.controller.Request = new HttpRequestMessage();
     this.controller.Configuration = new HttpConfiguration();
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="ShipTimeControllerTests"/> class.
 /// </summary>
 public ShipTimeControllerTests()
 {
     this.shipTimeManager = new Mock<IShipTimeManager>();
     this.shipTimeController = new ShipTimeController(this.shipTimeManager.Object);
 }