public async Task GetPopularAsync_Returns_ValidResult() { ApiSearchResponse <TVShowInfo> response = await _api.GetPopularAsync(); ApiResponseUtil.AssertErrorIsNull(response); IReadOnlyList <TVShowInfo> results = response.Results; ApiResponseUtil.AssertTVShowInformationStructure(results); }