gpt4 book ai didi

php - 无法在 PHPUnit 中使用数据提供程序运行单个测试

转载 作者:IT王子 更新时间:2023-10-29 00:03:32 25 4
gpt4 key购买 nike

我在使用命令行运行测试时遇到问题:如果我这样运行 phpunit:

phpunit -–no-configuration -–filter testAdd DataTest DataProviderTest.php

它工作正常。但是我们使用正则表达式来准确指定我们要测试的方法的名称:

phpunit -–no-configuration -–filter /::testAdd$/ DataTest DataProviderTest.php

不幸的是,第二种方法不起作用。源代码是:

<?php
class DataTest extends PHPUnit_Framework_TestCase
{
/**
* @dataProvider provider
*/
public function testAdd($a, $b, $c)
{
$this->assertEquals($c, $a + $b);
}

public function provider()
{
return array(
array(0, 0, 0),
array(0, 1, 1),
array(1, 0, 1),
array(1, 1, 3)
);
}
}

?>

最佳答案

处理有或没有数据集的测试的正则表达式是

phpunit --filter "/::<method>( with data set .*)?$/" <class> <file>

例如

phpunit --filter "/::testAdd( with data set .*)?$/" DataTest DataProviderTest.php

因为除非有数据集,否则测试方法的名称中不会有空格,因此您真的可以将其缩小为

phpunit --filter "/::testAdd( .*)?$/" DataTest DataProviderTest.php

关于php - 无法在 PHPUnit 中使用数据提供程序运行单个测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12193606/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com