Phpstrorm代码覆盖不起作用

时间:2015-05-19 10:01:39

标签: php phpstorm

你能帮帮我吗?当创建单元测试类并且我的测试运行正常时,但是我尝试使用代码覆盖率运行测试,测试总是显示0%。

<?php
include 'BowlingGame.php';
class Test extends PHPUnit_Framework_TestCase {

    /**
     * @test
     */
    public function firstTest(){
        $a = new BowlingGame();

        $this->assertEquals(16,$a->row(16));
    }
}

1 个答案:

答案 0 :(得分:0)

代码覆盖率需要您很可能尚未安装的XDebug扩展。

https://www.jetbrains.com/phpstorm/help/monitoring-code-coverage-for-php-applications.html