X7ROOT File Manager
Current Path:
/home/gfecatvj/sites/realesbar-X/vendor/phpunit/phpunit/src/Framework
home
/
gfecatvj
/
sites
/
realesbar-X
/
vendor
/
phpunit
/
phpunit
/
src
/
Framework
/
📁
..
📁
Assert
📄
Assert.php
(113.19 KB)
📁
Constraint
📄
DataProviderTestSuite.php
(1.42 KB)
📁
Error
📁
Exception
📄
ExceptionWrapper.php
(3.06 KB)
📄
IncompleteTest.php
(409 B)
📄
IncompleteTestCase.php
(1.44 KB)
📄
InvalidParameterGroupException.php
(445 B)
📁
MockObject
📄
SelfDescribing.php
(519 B)
📄
SkippedTest.php
(406 B)
📄
SkippedTestCase.php
(1.43 KB)
📄
Test.php
(539 B)
📄
TestBuilder.php
(6.83 KB)
📄
TestCase.php
(75.65 KB)
📄
TestFailure.php
(3.49 KB)
📄
TestListener.php
(2.11 KB)
📄
TestListenerDefaultImplementation.php
(1.2 KB)
📄
TestResult.php
(31.28 KB)
📄
TestSuite.php
(21.88 KB)
📄
TestSuiteIterator.php
(1.63 KB)
📄
WarningTestCase.php
(1.36 KB)
Editing: TestListener.php
<?php declare(strict_types=1); /* * This file is part of PHPUnit. * * (c) Sebastian Bergmann <sebastian@phpunit.de> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace PHPUnit\Framework; /** * @deprecated Use the `TestHook` interfaces instead */ interface TestListener { /** * An error occurred. * * @deprecated Use `AfterTestErrorHook::executeAfterTestError` instead */ public function addError(Test $test, \Throwable $t, float $time): void; /** * A warning occurred. * * @deprecated Use `AfterTestWarningHook::executeAfterTestWarning` instead */ public function addWarning(Test $test, Warning $e, float $time): void; /** * A failure occurred. * * @deprecated Use `AfterTestFailureHook::executeAfterTestFailure` instead */ public function addFailure(Test $test, AssertionFailedError $e, float $time): void; /** * Incomplete test. * * @deprecated Use `AfterIncompleteTestHook::executeAfterIncompleteTest` instead */ public function addIncompleteTest(Test $test, \Throwable $t, float $time): void; /** * Risky test. * * @deprecated Use `AfterRiskyTestHook::executeAfterRiskyTest` instead */ public function addRiskyTest(Test $test, \Throwable $t, float $time): void; /** * Skipped test. * * @deprecated Use `AfterSkippedTestHook::executeAfterSkippedTest` instead */ public function addSkippedTest(Test $test, \Throwable $t, float $time): void; /** * A test suite started. */ public function startTestSuite(TestSuite $suite): void; /** * A test suite ended. */ public function endTestSuite(TestSuite $suite): void; /** * A test started. * * @deprecated Use `BeforeTestHook::executeBeforeTest` instead */ public function startTest(Test $test): void; /** * A test ended. * * @deprecated Use `AfterTestHook::executeAfterTest` instead */ public function endTest(Test $test, float $time): void; }
Upload File
Create Folder