public function TaxonomyDefaultArgumentTest::testTermPath in Drupal 9
Same name and namespace in other branches
- 8 core/modules/taxonomy/tests/src/Kernel/Views/TaxonomyDefaultArgumentTest.php \Drupal\Tests\taxonomy\Kernel\Views\TaxonomyDefaultArgumentTest::testTermPath()
File
- core/modules/ taxonomy/ tests/ src/ Kernel/ Views/ TaxonomyDefaultArgumentTest.php, line 86 
Class
- TaxonomyDefaultArgumentTest
- Tests the representative node relationship for terms.
Namespace
Drupal\Tests\taxonomy\Kernel\ViewsCode
public function testTermPath() {
  $view = $this
    ->initViewWithRequest($this->term1
    ->toUrl()
    ->toString());
  $expected = $this->term1
    ->id();
  $this
    ->assertEquals($expected, $view->argument['tid']
    ->getDefaultArgument());
}