PHPUnit没有显示错误

时间:2014-08-09 23:03:02

标签: php phpunit

我开始使用这个测试框架,我遇到了以下问题。

我创建了一个文件/tests/CalculatorTest.php。它是这个文件中的代码:

<?php
class CalculatorTest extends PHPUnit_Framework_TestCase {
    public function testInstance()
    {
        new Calculator;
    }   
}
?>

我知道我在第一次测试中没有任何断言,但我期待看到的是“未找到”类'计算器',它只输出以下内容:

Alan:writingTests alan$ vendor/bin/phpunit tests/
PHPUnit 4.2.0 by Sebastian Bergmann.

如您所见,没有任何错误。

1 个答案:

答案 0 :(得分:0)

我刚刚发现错误,我不得不改变我的php.ini配置显示错误。