1.20.x views_query.test | protected ViewsSqlTest::viewsCreateTerm($vocabulary_name) |
Create a term.
Parameters
int $vocabulary_name: The vocabulary name that the term is to be added to.
Return value
object: A full term object with a random name.
File
- modules/
views/ tests/ views_query.test, line 158 - Tests for Views query features.
Class
Code
protected function viewsCreateTerm($vocabulary_name) {
$term = new TaxonomyTerm();
$term->name = $this->randomName();
$term->description = $this->randomName();
$term->vocabulary = $vocabulary_name;
$term->save();
return $term;
}