You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.4 KiB
51 lines
1.4 KiB
<?php |
|
namespace Hamcrest\Text; |
|
|
|
class IsEqualIgnoringWhiteSpaceTest extends \Hamcrest\AbstractMatcherTest |
|
{ |
|
|
|
private $_matcher; |
|
|
|
protected function setUp() |
|
{ |
|
$this->_matcher = \Hamcrest\Text\IsEqualIgnoringWhiteSpace::equalToIgnoringWhiteSpace( |
|
"Hello World how\n are we? " |
|
); |
|
} |
|
|
|
protected function createMatcher() |
|
{ |
|
return $this->_matcher; |
|
} |
|
|
|
public function testPassesIfWordsAreSameButWhitespaceDiffers() |
|
{ |
|
assertThat('Hello World how are we?', $this->_matcher); |
|
assertThat(" Hello \rWorld \t how are\nwe?", $this->_matcher); |
|
} |
|
|
|
public function testFailsIfTextOtherThanWhitespaceDiffers() |
|
{ |
|
assertThat('Hello PLANET how are we?', not($this->_matcher)); |
|
assertThat('Hello World how are we', not($this->_matcher)); |
|
} |
|
|
|
public function testFailsIfWhitespaceIsAddedOrRemovedInMidWord() |
|
{ |
|
assertThat('HelloWorld how are we?', not($this->_matcher)); |
|
assertThat('Hello Wo rld how are we?', not($this->_matcher)); |
|
} |
|
|
|
public function testFailsIfMatchingAgainstNull() |
|
{ |
|
assertThat(null, not($this->_matcher)); |
|
} |
|
|
|
public function testHasAReadableDescription() |
|
{ |
|
$this->assertDescription( |
|
"equalToIgnoringWhiteSpace(\"Hello World how\\n are we? \")", |
|
$this->_matcher |
|
); |
|
} |
|
}
|
|
|