1

成功またはエラーに応じて特定のメッセージのみをコンソールに書き込むにはどうすればよいですか? これは私がこれまでに持っているものです:

require_once 'PHPUnit/Extensions/SeleniumTestCase.php';
class Example extends PHPUnit_Extensions_SeleniumTestCase
{
  protected function setUp()
  {
    $this->setBrowser('firefox');
    $this->setHost('host');
    $this->setPort(4444);
    $this->setBrowserUrl('url');
  }

  public function testMyTestCase()
  {

   $this->open("url");
    ...
   }
 }

出力を生成します:

Sebastian Bergmann による PHPUnit 3.7.26。

.

時間: 9.59 秒、メモリ: 2.00Mb OK (1 テスト、0 アサーション)

必要な出力:

OK またはエラー

4

1 に答える 1

0

PHPUnit の終了ステータスと標準ストリームのリダイレクトを使用できます

phpunit ./tests/ > /dev/null 2>&1 && echo OK || echo Error 
于 2013-11-01T05:52:50.220 に答える