public function FlysystemBridgeTest::testGetUriMatchesSetUri in Flysystem 8
Same name and namespace in other branches
- 3.x tests/src/Unit/FlysystemBridgeTest.php \Drupal\Tests\flysystem\Unit\FlysystemBridgeTest::testGetUriMatchesSetUri()
- 2.0.x tests/src/Unit/FlysystemBridgeTest.php \Drupal\Tests\flysystem\Unit\FlysystemBridgeTest::testGetUriMatchesSetUri()
- 3.0.x tests/src/Unit/FlysystemBridgeTest.php \Drupal\Tests\flysystem\Unit\FlysystemBridgeTest::testGetUriMatchesSetUri()
@covers ::getUri @covers ::setUri
File
- tests/
src/ Unit/ FlysystemBridgeTest.php, line 78
Class
- FlysystemBridgeTest
- @coversDefaultClass \Drupal\flysystem\FlysystemBridge @group flysystem
Namespace
Drupal\Tests\flysystem\UnitCode
public function testGetUriMatchesSetUri() {
$this->bridge
->setUri('beep://boop');
$this
->assertSame('beep://boop', $this->bridge
->getUri());
}