CakePHPのユニットテストとdebug()

CakePHPでユニットテストを行っているとき,assertで失敗したため,変数の内容を見てみたいとdebug()を使いました。ところが,何も出力されない。core.phpでdebugの値を0にしているわけでもなく,原因が思い当たりません。

どうしたものかと思っていたら,CookbookのTestingにズバリ書いてありました…。

All output is swallowed when using PHPUnit 3.6+. Add the –debug modifier if using the CLI or add &debug=1 to the url if using the web runner to display output.

コマンドラインで実行している場合には,--debugオプションをつければよく,ウェブブラウザ上で実行している場合には,アドレスに&debug=1をつければよいそうです。