function LinkTest::testLinkMerge

Same name and namespace in other branches
  1. 8.9.x core/modules/jsonapi/tests/src/Unit/JsonApiResource/LinkTest.php \Drupal\Tests\jsonapi\Unit\JsonApiResource\LinkTest::testLinkMerge()
  2. 10 core/modules/jsonapi/tests/src/Unit/JsonApiResource/LinkTest.php \Drupal\Tests\jsonapi\Unit\JsonApiResource\LinkTest::testLinkMerge()
  3. 11.x core/modules/jsonapi/tests/src/Unit/JsonApiResource/LinkTest.php \Drupal\Tests\jsonapi\Unit\JsonApiResource\LinkTest::testLinkMerge()

@covers ::merge @dataProvider linkMergeProvider

File

core/modules/jsonapi/tests/src/Unit/JsonApiResource/LinkTest.php, line 92

Class

LinkTest
@coversDefaultClass <a href="/api/drupal/core%21modules%21jsonapi%21src%21JsonApiResource%21Link.php/class/Link/9" title="Represents an RFC8288 based link." class="local">\Drupal\jsonapi\JsonApiResource\Link</a> @group jsonapi

Namespace

Drupal\Tests\jsonapi\Unit\JsonApiResource

Code

public function testLinkMerge(Link $a, Link $b, $expected) {
    if ($expected instanceof Link) {
        $this->assertSame($expected->getCacheTags(), Link::merge($a, $b)->getCacheTags());
    }
    else {
        $this->expectExceptionObject($expected);
        Link::merge($a, $b);
    }
}

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