有没有办法直接在注释中指定测试参数?像这样:
/**
* @dataProvider [[0, 0, 0], [0, 1, 1], [1, 0, 1]]
*/
public function testAdd($a, $b, $expected)
{
$this->assertEquals($expected, $a + $b);
}
因为如果DataProvider只使用一次简单的数据集,它会很有用。
答案 0 :(得分:7)
感谢Sebastian Bergmann,解决方案是使用UICollectionView
:
la $t0, var
答案 1 :(得分:3)
您在PHPUnit 4.8中添加了所描述的内容。