KUJUNTI.ID MINISH3LL
Path : /var/www/html/phkaymedia/vendor/hamcrest/hamcrest-php/tests/Hamcrest/Text/
(S)h3ll Cr3at0r :
F!le Upl0ad :

B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H

Current File : /var/www/html/phkaymedia/vendor/hamcrest/hamcrest-php/tests/Hamcrest/Text/MatchesPatternTest.php


<?php
namespace Hamcrest\Text;

class MatchesPatternTest extends \Hamcrest\AbstractMatcherTest
{

    protected function createMatcher()
    {
        return matchesPattern('/o+b/');
    }

    public function testEvaluatesToTrueIfArgumentmatchesPattern()
    {
        assertThat('foobar', matchesPattern('/o+b/'));
        assertThat('foobar', matchesPattern('/^foo/'));
        assertThat('foobar', matchesPattern('/ba*r$/'));
        assertThat('foobar', matchesPattern('/^foobar$/'));
    }

    public function testEvaluatesToFalseIfArgumentDoesntMatchRegex()
    {
        assertThat('foobar', not(matchesPattern('/^foob$/')));
        assertThat('foobar', not(matchesPattern('/oobe/')));
    }

    public function testHasAReadableDescription()
    {
        $this->assertDescription('a string matching "pattern"', matchesPattern('pattern'));
    }
}

© KUJUNTI.ID