Created
August 18, 2022 17:25
-
-
Save ismail1432/0fce85a5bf6a9a24857beedbf6e255d6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Tests; | |
use PHPUnit\Framework\TestCase; | |
final class DemoTimeoutTest extends TestCase | |
{ | |
public function testItsTrue(): void | |
{ | |
TimeoutTest::$timeout = 1; | |
sleep(2); | |
self::assertTrue(true); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment