You are here

public function FlysystemBridgeTest::testGetUriMatchesSetUri in Flysystem 8

Same name and namespace in other branches
  1. 3.x tests/src/Unit/FlysystemBridgeTest.php \Drupal\Tests\flysystem\Unit\FlysystemBridgeTest::testGetUriMatchesSetUri()
  2. 2.0.x tests/src/Unit/FlysystemBridgeTest.php \Drupal\Tests\flysystem\Unit\FlysystemBridgeTest::testGetUriMatchesSetUri()
  3. 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\Unit

Code

public function testGetUriMatchesSetUri() {
  $this->bridge
    ->setUri('beep://boop');
  $this
    ->assertSame('beep://boop', $this->bridge
    ->getUri());
}