16
PHP 단위 테스트를 실행하는 동안 CLI로 출력하는 방법은 무엇입니까?
PHPUnit 테스트를 실행할 때 출력을 덤프하여 하나 또는 두 가지를 디버깅 할 수 있기를 원합니다. 나는 다음을 시도했다 ( PHPUnit Manual 예제 와 유사 ); class theTest extends PHPUnit_Framework_TestCase { /** * @outputBuffering disabled */ public function testOutput() { print_r("Hello World"); print "Ping"; echo "Pong"; $out = "Foo"; var_dump($out); } …
151
php
unit-testing
phpunit