Вход Регистрация
Файл: gapps/vendor/hamcrest/hamcrest-php/tests/Hamcrest/Type/IsBooleanTest.php
Строк: 40
<?php
namespace HamcrestType;

class 
IsBooleanTest extends HamcrestAbstractMatcherTest
{

    protected function 
createMatcher()
    {
        return 
HamcrestTypeIsBoolean::booleanValue();
    }

    public function 
testEvaluatesToTrueIfArgumentMatchesType()
    {
        
assertThat(falsebooleanValue());
        
assertThat(truebooleanValue());
    }

    public function 
testEvaluatesToFalseIfArgumentDoesntMatchType()
    {
        
assertThat(array(), not(booleanValue()));
        
assertThat(5not(booleanValue()));
        
assertThat('foo'not(booleanValue()));
    }

    public function 
testHasAReadableDescription()
    {
        
$this->assertDescription('a boolean'booleanValue());
    }

    public function 
testDecribesActualTypeInMismatchMessage()
    {
        
$this->assertMismatchDescription('was null'booleanValue(), null);
        
$this->assertMismatchDescription('was a string "foo"'booleanValue(), 'foo');
    }
}
Онлайн: 0
Реклама