Uname: Linux business55.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
Software: LiteSpeed
PHP version: 8.1.31 [ PHP INFO ] PHP os: Linux
Server Ip: 162.213.251.212
Your Ip: 3.15.189.95
User: allssztx (535) | Group: allssztx (533)
Safe Mode: OFF
Disable Function:
NONE

name : IsNotTest.php
<?php
namespace Hamcrest\Core;

class IsNotTest extends \Hamcrest\AbstractMatcherTest
{

    protected function createMatcher()
    {
        return \Hamcrest\Core\IsNot::not('something');
    }

    public function testEvaluatesToTheTheLogicalNegationOfAnotherMatcher()
    {
        $this->assertMatches(not(equalTo('A')), 'B', 'should match');
        $this->assertDoesNotMatch(not(equalTo('B')), 'B', 'should not match');
    }

    public function testProvidesConvenientShortcutForNotEqualTo()
    {
        $this->assertMatches(not('A'), 'B', 'should match');
        $this->assertMatches(not('B'), 'A', 'should match');
        $this->assertDoesNotMatch(not('A'), 'A', 'should not match');
        $this->assertDoesNotMatch(not('B'), 'B', 'should not match');
    }

    public function testUsesDescriptionOfNegatedMatcherWithPrefix()
    {
        $this->assertDescription('not a value greater than <2>', not(greaterThan(2)));
        $this->assertDescription('not "A"', not('A'));
    }
}
© 2025 GrazzMean-Shell