public function FeatureContext::thereAreArticleNodesWithAHugeNumberOfTaxonomyTermsEach in Pantheon Advanced Page Cache 7
@Given there are :numnber_of_nodes article nodes with a huge number of taxonomy terms each
File
- tests/
behat/ features/ bootstrap/ FeatureContext.php, line 39
Class
- FeatureContext
- Define application features from the specific context.
Code
public function thereAreArticleNodesWithAHugeNumberOfTaxonomyTermsEach($number_of_nodes) {
$i = 0;
while ($i < $number_of_nodes) {
$this
->WhenIGenerateAnArticleWithLotsOfTerms();
$i++;
}
}