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

class 
IsResourceTest extends HamcrestAbstractMatcherTest
{

    protected function 
createMatcher()
    {
        return 
HamcrestTypeIsResource::resourceValue();
    }

    public function 
testEvaluatesToTrueIfArgumentMatchesType()
    {
        
assertThat(tmpfile(), resourceValue());
    }

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

    public function 
testHasAReadableDescription()
    {
        
$this->assertDescription('a resource'resourceValue());
    }

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