function EndpointTest::testMatchUrl

Same name and namespace in other branches
  1. 9 core/modules/media/tests/src/Unit/EndpointTest.php \Drupal\Tests\media\Unit\EndpointTest::testMatchUrl()
  2. 11.x core/modules/media/tests/src/Unit/EndpointTest.php \Drupal\Tests\media\Unit\EndpointTest::testMatchUrl()

@covers ::matchUrl

File

core/modules/media/tests/src/Unit/EndpointTest.php, line 20

Class

EndpointTest
@coversDefaultClass <a href="/api/drupal/core%21modules%21media%21src%21OEmbed%21Endpoint.php/class/Endpoint/10" title="Value object for oEmbed provider endpoints." class="local">\Drupal\media\OEmbed\Endpoint</a>

Namespace

Drupal\Tests\media\Unit

Code

public function testMatchUrl() : void {
    $endpoint = new Endpoint('https://www.youtube.com/oembed', $this->createMock('\\Drupal\\media\\OEmbed\\Provider'), [
        'https://*.youtube.com/playlist?list=*',
    ]);
    $this->assertTrue($endpoint->matchUrl('https://www.youtube.com/playlist?list=aBc-EzAs123'));
}

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