我喜欢PHPUnit按惯例自动分解测试名称的方式。
public function testValidDataInput()
当我使用testdox标志运行时:
phpunit --testdox tests
变为:
PHPUnit 4.8.26 by Sebastian Bergmann and contributors. MyClass [x] Valid data input
但我无法在the documentation中找到如何解决大写首字母的问题。
public function testValidURLInput()
变为:
MyClass [x] Valid u r l input
是否可以让它显示如下:
MyClass [x] Valid URL input
答案 0 :(得分:1)
您可以使用testValidUrlInput()
(这不是一个好名字,尤其是当您想使用TestDox输出时)来获取valid url input
,或者您可以使用@testdox Valid URL input
来注释您的测试方法得到Valid URL input
。