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

            var response = await _shipperController.DeleteShipper(shipperId);

            Assert.IsType <NotFoundResult>(response);
        }