X7ROOT File Manager
Current Path:
/home/gfecatvj/sites/realesbar/vendor/phpunit/phpunit/src/Framework
home
/
gfecatvj
/
sites
/
realesbar
/
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: SkippedTestCase.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; /** * @internal This class is not covered by the backward compatibility promise for PHPUnit */ final class SkippedTestCase extends TestCase { /** * @var bool */ protected $backupGlobals = false; /** * @var bool */ protected $backupStaticAttributes = false; /** * @var bool */ protected $runTestInSeparateProcess = false; /** * @var bool */ protected $useErrorHandler = false; /** * @var string */ private $message; public function __construct(string $className, string $methodName, string $message = '') { parent::__construct($className . '::' . $methodName); $this->message = $message; } public function getMessage(): string { return $this->message; } /** * Returns a string representation of the test case. * * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException */ public function toString(): string { return $this->getName(); } /** * @throws Exception */ protected function runTest(): void { $this->markTestSkipped($this->message); } }
Upload File
Create Folder