<?php
include 'BowlingGame.php';
class Test extends PHPUnit_Framework_TestCase {
/**
* @test
*/
public function firstTest(){
$a = new BowlingGame();
$this->assertEquals(16,$a->row(16));
}
}
答案 0 :(得分:0)
代码覆盖率需要您很可能尚未安装的XDebug扩展。
https://www.jetbrains.com/phpstorm/help/monitoring-code-coverage-for-php-applications.html