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

class 
IsObjectTest extends HamcrestAbstractMatcherTest
{

    protected function 
createMatcher()
    {
        return 
HamcrestTypeIsObject::objectValue();
    }

    public function 
testEvaluatesToTrueIfArgumentMatchesType()
    {
        
assertThat(new stdClassobjectValue());
    }

    public function 
testEvaluatesToFalseIfArgumentDoesntMatchType()
    {
        
assertThat(falsenot(objectValue()));
        
assertThat(5not(objectValue()));
        
assertThat('foo'not(objectValue()));
    }

    public function 
testHasAReadableDescription()
    {
        
$this->assertDescription('an object'objectValue());
    }

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