function TaxonomyTermFilterDepthTest::assertTermWithDepthResult

Changes the tid filter to given term and depth.

Parameters

int $tid: The term ID to filter on.

int $depth: The depth to search.

array $expected: The expected views result.

1 call to TaxonomyTermFilterDepthTest::assertTermWithDepthResult()
TaxonomyTermFilterDepthTest::testTermWithDepthFilter in core/modules/taxonomy/tests/src/Functional/Views/TaxonomyTermFilterDepthTest.php
Tests the terms with depth filter.

File

core/modules/taxonomy/tests/src/Functional/Views/TaxonomyTermFilterDepthTest.php, line 133

Class

TaxonomyTermFilterDepthTest
Test the taxonomy term with depth filter.

Namespace

Drupal\Tests\taxonomy\Functional\Views

Code

protected function assertTermWithDepthResult($tid, $depth, array $expected) {
  $this->view
    ->destroy();
  $this->view
    ->initDisplay();
  $filters = $this->view->displayHandlers
    ->get('default')
    ->getOption('filters');
  $filters['tid_depth']['depth'] = $depth;
  $filters['tid_depth']['value'] = [
    $tid,
  ];
  $this->view->displayHandlers
    ->get('default')
    ->setOption('filters', $filters);
  $this->executeView($this->view);
  $this->assertIdenticalResultsetHelper($this->view, $expected, [
    'nid' => 'nid',
  ], 'assertIdentical');
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.