0
你能幫我嗎?當創建單元測試類並且我的測試運行正常時,但是我嘗試運行帶有代碼覆蓋率的測試,測試始終顯示0%。Phpstrorm代碼覆蓋不起作用
<?php
include 'BowlingGame.php';
class Test extends PHPUnit_Framework_TestCase {
/**
* @test
*/
public function firstTest(){
$a = new BowlingGame();
$this->assertEquals(16,$a->row(16));
}
}
xDebug已配置並工作 – IvanBozhakov