gpt4 book ai didi

php - 如何使用其依赖项运行 PHPUnit 测试

转载 作者:搜寻专家 更新时间:2023-10-31 20:39:25 24 4
gpt4 key购买 nike

我的设置是这样的:

class MyTest extends PHPUnit_Framework_TestCase
{
// More tests before

public function testOne()
{
// Assertions

return $value;
}

/**
* @depends testOne
*/
public function testTwo($value)
{
// Assertions
}

// More tests after
}

我想专注于 testTwo,但是当我执行 phpunit --filter testTwo 时,我收到如下消息:

This test depends on "MyTest::testOne" to pass.
No tests executed!

我的问题:有没有一种方法可以运行一个测试及其所有依赖项?

最佳答案

没有开箱即用的方法来自动运行所有依赖项。但是,您可以使用 @group 批注将测试分组,然后运行 ​​phpunit --group myGroup

关于php - 如何使用其依赖项运行 PHPUnit 测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26816742/

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