function EndpointTest::testMatchUrl
Same name in other branches
- 10 core/modules/media/tests/src/Unit/EndpointTest.php \Drupal\Tests\media\Unit\EndpointTest::testMatchUrl()
- 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 18
Class
- EndpointTest
- @coversDefaultClass \Drupal\media\OEmbed\Endpoint
Namespace
Drupal\Tests\media\UnitCode
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.