我正在使用 phpunit。我想测试我的代码,它基本上从 HTTP 标头获取参数并使用它来执行后续操作。
但是在测试标头时为空。
有什么方法可以设置标头(可能在引导文件中),以便当我的代码访问参数时,它会获得该值?
更新:我按照这个问题 的建议尝试了下面的代码:
class Action_UserTest extends PHPUnit_Framework_TestCase {
/**
* @runInSeparateProcess
*/
public function testBar()
{
header('Location : foo');
}
/**
* @covers Action_User::executePut
* @todo Implement testExecutePut().
*/
public function testExecutePut() {
ob_start();
$this->testBar();
$headers_list = headers_list();
$this->assertNotEmpty($headers_list);
$this->assertContains('Location: foo', $headers_list);
header_remove();
ob_clean();
}
}
但给出错误:
Action_UserTest::testExecutePut()
Cannot modify header information - headers already sent by (output started at /usr/lib/php/PHPUnit/Util/Printer.php:172)