You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
867 B
41 lines
867 B
<?php |
|
|
|
namespace React\Tests\Stream; |
|
|
|
class TestCase extends \PHPUnit_Framework_TestCase |
|
{ |
|
protected function expectCallableExactly($amount) |
|
{ |
|
$mock = $this->createCallableMock(); |
|
$mock |
|
->expects($this->exactly($amount)) |
|
->method('__invoke'); |
|
|
|
return $mock; |
|
} |
|
|
|
protected function expectCallableOnce() |
|
{ |
|
$mock = $this->createCallableMock(); |
|
$mock |
|
->expects($this->once()) |
|
->method('__invoke'); |
|
|
|
return $mock; |
|
} |
|
|
|
protected function expectCallableNever() |
|
{ |
|
$mock = $this->createCallableMock(); |
|
$mock |
|
->expects($this->never()) |
|
->method('__invoke'); |
|
|
|
return $mock; |
|
} |
|
|
|
protected function createCallableMock() |
|
{ |
|
return $this->getMock('React\Tests\Stream\CallableStub'); |
|
} |
|
}
|
|
|