/home/techb158/dev.balacoffee.com/vendor/hamcrest/hamcrest-php/tests/Hamcrest/Core
NameSizeModeActions
AllOfTest.php15630644editdlrm
AnyOfTest.php24630644editdlrm
CombinableMatcherTest.php17730644editdlrm
DescribedAsTest.php10710644editdlrm
EveryTest.php8340644editdlrm
HasToStringTest.php23660644editdlrm
IsAnythingTest.php6840644editdlrm
IsCollectionContainingTest.php26300644editdlrm
IsEqualTest.php27660644editdlrm
IsIdenticalTest.php7690644editdlrm
IsInstanceOfTest.php18380644editdlrm
IsNotTest.php9980644editdlrm
IsNullTest.php4840644editdlrm
IsSameTest.php7950644editdlrm
IsTest.php11060644editdlrm
IsTypeOfTest.php14810644editdlrm
SampleBaseClass.php2310644editdlrm
SampleSubClass.php960644editdlrm
SetTest.php31980644editdlrm
Edit: /home/techb158/dev.balacoffee.com/vendor/hamcrest/hamcrest-php/tests/Hamcrest/Core/IsNotTest.php (998B)
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')); } }