CakePHP 2.0 で単体テストの debug() が効かない件

いつの間にか、単体テスト実行時の debug() が効かなくなっててどうしたものかと悩んでいたところ、以下にヒントが書かれてあった。
http://book.cakephp.org/2.0/en/development/testing.html#installing-phpunit

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.

PHPUnit 3.6 以降で仕様変更があり、すべての出力が飲み込まれるとのこと。
コマンドライン上で、 "--debug" オプションをつけてテストするか、 Web 上から URL に "&debug=1" をつけるといいらしい。