1
0
Fork 0
mirror of synced 2024-06-27 02:31:04 +12:00
appwrite/tests/extensions/Retry.php
2022-08-30 23:10:15 +12:00

17 lines
311 B
PHP

<?php
namespace Appwrite\Tests;
/**
* Allows test methods to be retried if they fail.
*
* Requires that the test class extends {@see TestCase} and has trait {@see Retryable}.
*/
#[\Attribute(\Attribute::TARGET_METHOD)]
class Retry
{
public function __construct(protected int $count = 1)
{
}
}