public async Task IdOfNonExistentShipper_GetShipper_ReturnNotFound()
        {
            const int shipperId = -1;

            var response = await _shipperController.GetShipper(shipperId);

            Assert.IsType <ActionResult <ShipperModel> >(response);
            Assert.IsType <NotFoundResult>(response.Result);
        }