我已经通过 Pear 安装了 PHPUnit。
当我尝试通过 PHPUnit 进行测试时,即使给出了测试文件路径,它也会显示错误:系统找不到指定的路径。
我已经尝试过示例代码: https ://netbeans.org/kb/docs/php/phpunit.html?print=yes#installing-phpunit
<?php
class Calculator
{
/**
* @assert (0, 0) == 0
* @assert (0, 1) == 1
* @assert (1, 0) == 1
* @assert (1, 1) == 2
* @assert (1, 2) == 4
*/
public function add($a, $b)
{
return $a + $b;
}
}
?>