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 : 3.14.3.180
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
3 /
symfony /
console /
Tests /
Output /
Delete
Unzip
Name
Size
Permission
Date
Action
ConsoleOutputTest.php
1.39
KB
-rw-r--r--
2018-11-27 09:00
ConsoleSectionOutputTest.php
6.34
KB
-rw-r--r--
2018-11-27 09:00
NullOutputTest.php
2.52
KB
-rw-r--r--
2018-11-27 09:00
OutputTest.php
6.71
KB
-rw-r--r--
2018-11-27 09:00
StreamOutputTest.php
1.77
KB
-rw-r--r--
2018-11-27 09:00
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\Console\Tests\Output; use PHPUnit\Framework\TestCase; use Symfony\Component\Console\Formatter\OutputFormatter; use Symfony\Component\Console\Output\ConsoleOutput; use Symfony\Component\Console\Output\Output; class ConsoleOutputTest extends TestCase { public function testConstructor() { $output = new ConsoleOutput(Output::VERBOSITY_QUIET, true); $this->assertEquals(Output::VERBOSITY_QUIET, $output->getVerbosity(), '__construct() takes the verbosity as its first argument'); $this->assertSame($output->getFormatter(), $output->getErrorOutput()->getFormatter(), '__construct() takes a formatter or null as the third argument'); } public function testSetFormatter() { $output = new ConsoleOutput(); $outputFormatter = new OutputFormatter(); $output->setFormatter($outputFormatter); $this->assertSame($outputFormatter, $output->getFormatter()); } public function testSetVerbosity() { $output = new ConsoleOutput(); $output->setVerbosity(Output::VERBOSITY_VERBOSE); $this->assertSame(Output::VERBOSITY_VERBOSE, $output->getVerbosity()); } }