App/helpers.php
function sample($message)
{
echo $message;
}
tests/herpersTest.php
function testsample()
{
$this->assertEquals('○○○○',sample('test'));
}
我想查看回音,但我无法检查回音和打印。
我知道只有退货支票
我做错了什么?
答案 0 :(得分:1)
您可以使用输出缓冲功能捕获输出。
function testSample()
{
ob_start();
sample('test');
$output = ob_get_clean();
$this->assertEquals('○○○○', $output);
}