HEX
Server: LiteSpeed
System: Linux server334.web-hosting.com 4.18.0-553.124.4.lve.el8.x86_64 #1 SMP Fri May 15 13:02:13 UTC 2026 x86_64
User: richfield (1256)
PHP: 8.2.31
Disabled: NONE
Upload Files
File: /home/richfield/www/rich/vendor/hamcrest/hamcrest-php/tests/Hamcrest/Type/IsResourceTest.php
<?php
namespace Hamcrest\Type;

class IsResourceTest extends \Hamcrest\AbstractMatcherTest
{

    protected function createMatcher()
    {
        return \Hamcrest\Type\IsResource::resourceValue();
    }

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

    public function testEvaluatesToFalseIfArgumentDoesntMatchType()
    {
        assertThat(false, not(resourceValue()));
        assertThat(5, not(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');
    }
}