public async Task GetAllWithReviewsAsync_WhenCalled_CallsBeerServiceGetAllWithReviewsAsync()
        {
            await _controller.GetAllWithReviewsAsync();

            await _beerService.Received(1).GetAllWithReviewsAsync();
        }