我正在运行phpunit(在laravel应用程序上),它输出所有失败的案例与他们的期望。我可以以只显示一串字符串的方式运行它。和F而不是其余的?或者我可以用'tap'格式运行它,只有'ok'和'not ok'?
我找不到任何选择。
答案 0 :(得分:1)
meta property="og:image" content="https://splashyourcash.com/images/safee.jpg"
本身并不支持此功能。但是这里有一个perl单行程序,打印phpunit
用于通过测试,.
用于失败:
E
phpunit --tap | perl -ne '$|=1;print "." if (/^ok/); print "E" if (/^not ok/)'
是用于关闭输出缓冲的perl魔法。