function it_throws_exception_when_can_not_fetch_response_using_http_client(ApiHttpClientInterface $apiHttpClient)
 {
     $apiHttpClient->get(Argument::type(ApiHttpPathAndQuery::class))->willThrow(ApiHttpClientException::class);
     $this->shouldThrow(CouldNotFetchResourceRepositoryException::class)->duringFindByIds(FindByIdsParameters::createForPublicationIdAndArticleIds(PublicationId::SA, [self::ARTICLE_ID]));
     $this->shouldThrow(CouldNotFetchResourceRepositoryException::class)->duringFind(FindParameters::createForPublicationIdAndArticleId(PublicationId::SA, self::ARTICLE_ID));
     $this->shouldThrow(CouldNotFetchResourceRepositoryException::class)->duringFindByChangelog(FindByChangelogParameters::createForPublicationId(PublicationId::SA));
     $this->shouldThrow(CouldNotFetchResourceRepositoryException::class)->duringFindBySections(FindBySectionParameters::createForPublicationIdAndSections(PublicationId::SA, [self::SECTION_NAME]));
 }
 /**
  * @When I ask for articles for :publicationId publication for section :section
  *
  * @param string $publicationId
  * @param string $section
  */
 public function iAskForArticlesForPublicationForSection($publicationId, $section)
 {
     $findParameters = FindBySectionParameters::createForPublicationIdAndSections($publicationId, [$section]);
     foreach ($this->articleRepository->findBySections($findParameters)->getTeasers() as $articleTeaser) {
         $this->articles[$articleTeaser['id']] = $articleTeaser;
     }
 }