Skip to content

Instantly share code, notes, and snippets.

@ismail1432
Created August 18, 2022 17:25
Show Gist options
  • Save ismail1432/0fce85a5bf6a9a24857beedbf6e255d6 to your computer and use it in GitHub Desktop.
Save ismail1432/0fce85a5bf6a9a24857beedbf6e255d6 to your computer and use it in GitHub Desktop.
<?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