سلام. طبق داکیومنت phpunit بحث annotations in comment در ورژن 12 ساپورت نمیشود. میتونید با Attributesها جایگزین کنید. (داکیومنت phpunit )
use PHPUnit\Framework\Attributes\Depends;
use PHPUnit\Framework\TestCase;
final class ExampleTest extends TestCase {
public function testA($resultFromA)
{
// Test code
}
#[Depends('testA')]
public function testB($resultFromA)
{
// Test code
}
}