You are here

public function RelationshipRepresentativeNodeTest::testRelationship in Zircon Profile 8.0

Same name in this branch
  1. 8.0 core/modules/user/src/Tests/Views/RelationshipRepresentativeNodeTest.php \Drupal\user\Tests\Views\RelationshipRepresentativeNodeTest::testRelationship()
  2. 8.0 core/modules/taxonomy/src/Tests/Views/RelationshipRepresentativeNodeTest.php \Drupal\taxonomy\Tests\Views\RelationshipRepresentativeNodeTest::testRelationship()
Same name and namespace in other branches
  1. 8 core/modules/taxonomy/src/Tests/Views/RelationshipRepresentativeNodeTest.php \Drupal\taxonomy\Tests\Views\RelationshipRepresentativeNodeTest::testRelationship()

Tests the relationship.

File

core/modules/taxonomy/src/Tests/Views/RelationshipRepresentativeNodeTest.php, line 29
Contains \Drupal\taxonomy\Tests\Views\RelationshipRepresentativeNodeTest.

Class

RelationshipRepresentativeNodeTest
Tests the representative node relationship for terms.

Namespace

Drupal\taxonomy\Tests\Views

Code

public function testRelationship() {
  $view = Views::getView('test_groupwise_term');
  $this
    ->executeView($view);
  $map = array(
    'node_field_data_taxonomy_term_field_data_nid' => 'nid',
    'tid' => 'tid',
  );
  $expected_result = array(
    array(
      'nid' => $this->nodes[1]
        ->id(),
      'tid' => $this->term2
        ->id(),
    ),
    array(
      'nid' => $this->nodes[1]
        ->id(),
      'tid' => $this->term1
        ->id(),
    ),
  );
  $this
    ->assertIdenticalResultset($view, $expected_result, $map);
}