public async Task ShouldHandleEmptyResponse()
        {
            var result = await _controller.GetApprenticeships(1L, new ApprenticeshipSearchQuery()) as OkNegotiatedContentResult <ApprenticeshipSearchResponse>;

            result.Content.Apprenticeships.Count().Should().Be(0);
        }