Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 216.73.216.44
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
3 /
phpunit /
phpunit /
src /
Util /
TestDox /
Delete
Unzip
Name
Size
Permission
Date
Action
CliTestDoxPrinter.php
5.56
KB
-rw-r--r--
2018-12-03 09:00
HtmlResultPrinter.php
2.62
KB
-rw-r--r--
2018-12-03 09:00
NamePrettifier.php
5.43
KB
-rw-r--r--
2018-12-03 09:00
ResultPrinter.php
6.85
KB
-rw-r--r--
2018-12-03 09:00
TestResult.php
3.88
KB
-rw-r--r--
2018-12-03 09:00
TextResultPrinter.php
1.05
KB
-rw-r--r--
2018-12-03 09:00
XmlResultPrinter.php
5.22
KB
-rw-r--r--
2018-12-03 09:00
Save
Rename
<?php /* * 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\Util\TestDox; /** * Prints TestDox documentation in text format to files. * For the CLI testdox printer please refer to \PHPUnit\TextUI\TextDoxPrinter. */ class TextResultPrinter extends ResultPrinter { /** * Handler for 'start class' event. */ protected function startClass(string $name): void { $this->write($this->currentTestClassPrettified . "\n"); } /** * Handler for 'on test' event. */ protected function onTest($name, bool $success = true): void { if ($success) { $this->write(' [x] '); } else { $this->write(' [ ] '); } $this->write($name . "\n"); } /** * Handler for 'end class' event. */ protected function endClass(string $name): void { $this->write("\n"); } }