ฉันกำลังพยายามใช้ PHPunit เพื่อทดสอบคลาสที่แสดงผลส่วนหัวที่กำหนดเอง
ปัญหาคือบนเครื่องของฉันสิ่งนี้:
<?php
class HeadersTest extends PHPUnit_Framework_TestCase {
public function testHeaders()
{
ob_start();
header('Location: foo');
$headers_list = headers_list();
header_remove();
ob_clean();
$this->assertContains('Location: foo', $headers_list);
}
}
หรือแม้แต่สิ่งนี้:
<?php
class HeadersTest extends PHPUnit_Framework_TestCase {
public function testHeaders()
{
ob_start();
header('Location: foo');
header_remove();
ob_clean();
}
}
ส่งคืนข้อผิดพลาดนี้:
name@host [~/test]# phpunit --verbose HeadersTest.php
PHPUnit 3.6.10 by Sebastian Bergmann.
E
Time: 0 seconds, Memory: 2.25Mb
There was 1 error:
1) HeadersTest::testHeaders
Cannot modify header information - headers already sent by (output started at /usr/local/lib/php/PHPUnit/Util/Printer.php:173)
/test/HeadersTest.php:9
FAILURES!
Tests: 1, Assertions: 0, Errors: 1.
ดูเหมือนว่ามีสิ่งอื่นส่งออกไปยังเทอร์มินัลก่อนที่การทดสอบจะทำงานแม้ว่าจะไม่มีไฟล์อื่นรวมอยู่และไม่มีอักขระอื่นก่อนที่จะเริ่มแท็ก PHP อาจเป็นสิ่งที่อยู่ใน PHPunit ที่ทำให้เกิดสิ่งนี้หรือไม่?
ปัญหาคืออะไร?