function AggregatorTestBase::getDefaultFeedItemCount
Same name and namespace in other branches
- 8.9.x core/modules/aggregator/src/Tests/AggregatorTestBase.php \Drupal\aggregator\Tests\AggregatorTestBase::getDefaultFeedItemCount()
- 8.9.x 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/ tests/ src/ Functional/ AggregatorTestBase.php, line 167
Class
- AggregatorTestBase
- Defines a base class for testing the Aggregator module.
Namespace
Drupal\Tests\aggregator\FunctionalCode
public function getDefaultFeedItemCount() {
// Our tests are based off of rss.xml, so let's find out how many elements
// should be related.
return \Drupal::entityQuery('node')->condition('promote', NodeInterface::PROMOTED)
->condition('status', NodeInterface::PUBLISHED)
->accessCheck(FALSE)
->range(0, 10)
->count()
->execute();
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.