all() public method

public all ( integer $limit = Pagination::DEFAULT_LIMIT ) : mixed
$limit integer
return mixed
 /** @test */
 public function it_returns_all_news()
 {
     $this->apiShouldReturnPagination()->apiShouldReturnEmpty();
     $news = $this->provider->all();
     $this->assertIsPaginatedResponse($news);
 }