%PDF- %PDF-
Direktori : /var/www/html/car_rent/vendor/phpspec/phpspec/spec/PhpSpec/Matcher/ |
Current File : /var/www/html/car_rent/vendor/phpspec/phpspec/spec/PhpSpec/Matcher/StringEndMatcherSpec.php |
<?php namespace spec\PhpSpec\Matcher; use PhpSpec\ObjectBehavior; use Prophecy\Argument; use PhpSpec\Formatter\Presenter\PresenterInterface; class StringEndMatcherSpec extends ObjectBehavior { function let(PresenterInterface $presenter) { $presenter->presentString(Argument::type('string'))->willReturnArgument(); $this->beConstructedWith($presenter); } function it_is_a_matcher() { $this->shouldBeAnInstanceOf('PhpSpec\Matcher\MatcherInterface'); } function it_supports_endWith_keyword_and_string_subject() { $this->supports('endWith', 'hello, everzet', array('everzet'))->shouldReturn(true); } function it_does_not_support_anything_else() { $this->supports('endWith', array(), array())->shouldReturn(false); } function it_matches_strings_that_end_with_specified_suffix() { $this->shouldNotThrow()->duringPositiveMatch('endWith', 'everzet', array('zet')); } function it_does_not_match_strings_that_do_not_end_with_specified_suffix() { $this->shouldThrow()->duringPositiveMatch('endWith', 'everzet', array('tez')); } function it_matches_strings_that_do_not_end_with_specified_suffix() { $this->shouldNotThrow()->duringNegativeMatch('endWith', 'everzet', array('tez')); } function it_does_not_match_strings_that_do_end_with_specified_suffix() { $this->shouldThrow()->duringNegativeMatch('endWith', 'everzet', array('zet')); } }