function AggregatorTestBase::getDefaultFeedItemCount
Same name in this branch
- 8.9.x core/modules/aggregator/tests/src/Functional/AggregatorTestBase.php \Drupal\Tests\aggregator\Functional\AggregatorTestBase::getDefaultFeedItemCount()
Same name in other branches
- 9 core/modules/aggregator/tests/src/Functional/AggregatorTestBase.php \Drupal\Tests\aggregator\Functional\AggregatorTestBase::getDefaultFeedItemCount()
Returns the count of the randomly created feed array.
Return value
int Number of feed items on default feed created by createFeed().
File
-
core/
modules/ aggregator/ src/ Tests/ AggregatorTestBase.php, line 164
Class
- AggregatorTestBase
- Defines a base class for testing the Aggregator module.
Namespace
Drupal\aggregator\TestsCode
public function getDefaultFeedItemCount() {
// Our tests are based off of rss.xml, so let's find out how many elements
// should be related.
$feed_count = \Drupal::entityQuery('node')->condition('promote', NodeInterface::PROMOTED)
->condition('status', NodeInterface::PUBLISHED)
->accessCheck(FALSE)
->range(0, $this->config('system.rss')
->get('items.limit'))
->count()
->execute();
return min($feed_count, 10);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.