lstrojny/phpunit-function-mocker
最新稳定版本:1.1.0
Composer 安装命令:
composer require lstrojny/phpunit-function-mocker
包简介
Allows mocking otherwise untestable PHP functions through the use of namespaces
README 文档
README
Allows mocking otherwise untestable PHP functions through the use of namespaces.
<?php namespace MyNamespace; class Tool { public function isString($string) { return strlen($string) > 0 && ctype_alpha($string); } }
<?php require_once 'PHPUnit/Extension/FunctionMocker.php'; class MyTestCase extends PHPUnit_Framework_TestCase { public function setUp() { $this->php = PHPUnit_Extension_FunctionMocker::start($this, 'MyNamespace') ->mockFunction('strlen') ->mockFunction('ctype_alpha') ->getMock(); } /** @runInSeparateProcess */ public function testIsStringUsesStrlenAndCtypeAlpha() { $this->php ->expects($this->once()) ->method('strlen') ->with('foo') ->will($this->returnValue(3)) ; $this->php ->expects($this->once()) ->method('ctype_alpha') ->with('foo') ->will($this->returnValue(false)) ; $tool = new MyNamespace\Tool(); $this->assertFalse($tool->isString('foo')); } }
NOTE
Use @runInSeparateProcess annotation to make sure that the mocking is reliably working in PHP >=5.4
统计信息
- 总下载量: 342.42k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 53
- 点击次数: 1
- 依赖项目数: 11
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2012-11-06