PHPのテスト環境をちゃちゃっと構築する手順を書きます。 OSはUbuntu13.10です。 composerの導入とインストール 次のコマンドで最新のcomposer.pharをとってきます。 mkdir proj cd proj sudo apt-get install php5 php5-json curl curl -sS https://getcomposer.org/installer | php
class TwitterClient { public function tweet($message) { return true; } } $hoge = new TwitterClient(); $hoge->tweet('大心なう'); // trueが返る class ClientContainerTest extends PHPUnit_Framework_TestCase { public function test_モックを書いてみる() { $hoge = $this->getMock('TwitterClient', array('tweet')); $hoge->expects($this->any()) ->method('tweet') ->will($this->returnValue(true)); $hoge->tweet('大心なう'); // true
リリース、障害情報などのサービスのお知らせ
最新の人気エントリーの配信
処理を実行中です
j次のブックマーク
k前のブックマーク
lあとで読む
eコメント一覧を開く
oページを開く