You are here

public function vfsStreamTestCase::inspectWithContentGivesContentToVisitor in Zircon Profile 8

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

@test @group issue_10 @since 0.10.0

File

vendor/mikey179/vfsStream/src/test/php/org/bovigo/vfs/vfsStreamTestCase.php, line 536

Class

vfsStreamTestCase
Test for org\bovigo\vfs\vfsStream.

Namespace

org\bovigo\vfs

Code

public function inspectWithContentGivesContentToVisitor() {
  $mockContent = $this
    ->getMock('org\\bovigo\\vfs\\vfsStreamContent');
  $mockVisitor = $this
    ->getMock('org\\bovigo\\vfs\\visitor\\vfsStreamVisitor');
  $mockVisitor
    ->expects($this
    ->once())
    ->method('visit')
    ->with($this
    ->equalTo($mockContent))
    ->will($this
    ->returnValue($mockVisitor));
  $this
    ->assertSame($mockVisitor, vfsStream::inspect($mockVisitor, $mockContent));
}