You are here

public function vfsStreamWrapperTestCase::urlsAreCorrectlySet in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/mikey179/vfsStream/src/test/php/org/bovigo/vfs/vfsStreamWrapperTestCase.php \org\bovigo\vfs\vfsStreamWrapperTestCase::urlsAreCorrectlySet()

@test @group issue_34 @since 1.2.0

File

vendor/mikey179/vfsStream/src/test/php/org/bovigo/vfs/vfsStreamWrapperTestCase.php, line 737

Class

vfsStreamWrapperTestCase
Test for org\bovigo\vfs\vfsStreamWrapper.

Namespace

org\bovigo\vfs

Code

public function urlsAreCorrectlySet() {
  $this
    ->assertEquals($this->fooURL, $this->foo
    ->url());
  $this
    ->assertEquals($this->barURL, $this->bar
    ->url());
  $this
    ->assertEquals($this->baz1URL, $this->baz1
    ->url());
  $this
    ->assertEquals($this->baz2URL, $this->baz2
    ->url());
}