您好,登录后才能下订单哦!
这篇文章将为大家详细讲解有关phpunit中怎么执行指定测试case,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。
一个测试文件中,可能包含多个case,如何只执行其中的某个或某几个case呢?
比如下面的这段测试代码(demotest.php),是否可以只执行针对FuncA的两个测试~testFuncA_1,testFuncA_2呢?
<?php use PHPUnit\Framework\TestCase; class Unittest_Demo extends TestCase{ public function testFuncA_1(){ echo "\nFuncA1 test\n"; $this->assertTrue(true); } public function testFuncA_2(){ echo "\nFuncA2 test\n"; $this->assertTrue(true); } public function testFuncB_1(){ echo "\nFuncB1 test\n"; $this->assertTrue(true); } public function testFuncB_2(){ echo "\nFuncB2 test\n"; $this->assertTrue(true); } }
可以用 @group 标注来标记某个case属于一个或多个组,就像这样:
class MyTest extends PHPUnit_Framework_TestCase{ /** * @group specification */ public function testSomething(){ } /** * @group regresssion * @group bug2204 */ public function testSomethingElse(){ } }
测试可以基于组来选择性的执行,使用命令行phpunit的 --group选项+组名,可以执行对应测试组的测试。
对于1中的问题,我们可以做如下标注:
class Unittest_Demo extends TestCase{ /** *@group FuncA * */ public function testFuncA_1(){ ... ... } /** *@group FuncA * */ public function testFuncA_2(){ ... ... } ...
执行
phpunit test.php --group FuncA
得到结果
PHPUnit 6.5.3 by Sebastian Bergmann and contributors. . FuncA1 test . 2 / 2 (100%) FuncA2 test Time: 88 ms, Memory: 8.00MB OK (2 tests, 2 assertions)
可以使用--list-group选项,查看文件中存在的group。
比如针对上例,我们执行的效果如下:
phpunit test.php --list-group PHPUnit 6.5.3 by Sebastian Bergmann and contributors. Available test group(s): - FuncA - default
default分组就是未特别标识的case(testFuncB_1,testFuncB_2)。有需要,你可以使用如下命令执行这些case。
phpunit test.php --group default
@group是以注释的形式存在,注释的第一行必须是/**,否则phpunit将不识别。
命令行的phpunit支持如下选项:
--filter <pattern>
可以用于筛选满足条件的用例。
对于1中的问题,我们可以执行通过如下命令达到目的。
phpunit test.php --filter FuncA
说明
pattern部分类似于mysql的like,即%FuncA%。因此命中了名为testFuncA_1,testFuncA_2的两个case。
关于phpunit中怎么执行指定测试case就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。