You are here

public function vfsStreamWrapperTestCase::pathesAreCorrectlySet 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::pathesAreCorrectlySet()

@test @group issue_34 @since 1.2.0

File

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

Class

vfsStreamWrapperTestCase
Test for org\bovigo\vfs\vfsStreamWrapper.

Namespace

org\bovigo\vfs

Code

public function pathesAreCorrectlySet() {
  $this
    ->assertEquals(vfsStream::path($this->fooURL), $this->foo
    ->path());
  $this
    ->assertEquals(vfsStream::path($this->barURL), $this->bar
    ->path());
  $this
    ->assertEquals(vfsStream::path($this->baz1URL), $this->baz1
    ->path());
  $this
    ->assertEquals(vfsStream::path($this->baz2URL), $this->baz2
    ->path());
}