我已经PHPUnit的3.7
- 在的文档3.6,附录B,有一个
@assert
注释,而 - 在文档3.7,附录B, 没有
@assert
注解
该官方声明中提到了一些新的注解(和重新引入一个老之前已停用的),但它没有提及去除@assert
。 在更新日志的3.7。 , @assert
是不是在页面上找到
当我使用的一类我的代码运行的代码段
<?php
class MyMathClass
{
/**
* Add two given values together and return sum
* @assert (1,2) == 3
*/
public function addValues($a,$b)
{
return $a+$b;
}
}
输出
PHPUnit 3.7.1 by Sebastian Bergmann.
Time: 1 second, Memory: 4.25Mb
No tests executed!
用PHP 3.6.2
phpunit MyMathClass.php
PHPUnit 3.6.12 by Sebastian Bergmann.
.
Time: 0 seconds, Memory: 2.75Mb
OK (1 test, 1 assertion)