ホームページ >バックエンド開発 >PHPチュートリアル >PHP 5.3+ モック フレームワーク: Prophecy
Prophecy は、PHP 5.3 以降用の強力で柔軟なモック フレームワークです。元々は phpspec2 のニーズを満たすために開発されましたが、十分な柔軟性があり、あらゆるテスト フレームワークで使用できます。
サンプルコード:
<?phpclass UserTest extends PHPUnit_Framework_TestCase{ private $prophet; public function testPasswordHashing() { $hasher = $this->prophet->prophesize('App\Security\Hasher'); $user = new App\Entity\User($hasher->reveal()); $hasher->generateHash($user, 'qwerty')->willReturn('hashed_pass'); $user->setPassword('qwerty'); $this->assertEquals('hashed_pass', $user->getPassword()); } protected function setup() { $this->prophet = new \Prophecy\Prophet; } protected function tearDown() { $this->prophet->checkPredictions(); }}
プロジェクトホームページ: http://www.open-open.com/lib/view/home/1437393986490