Your IP : 18.118.166.45


Current Path : /home/lentoinv/props/vendor/hamcrest/hamcrest-php/tests/Hamcrest/Type/
Upload File :
Current File : /home/lentoinv/props/vendor/hamcrest/hamcrest-php/tests/Hamcrest/Type/IsObjectTest.php

<?php
namespace Hamcrest\Type;

class IsObjectTest extends \Hamcrest\AbstractMatcherTest
{

    protected function createMatcher()
    {
        return \Hamcrest\Type\IsObject::objectValue();
    }

    public function testEvaluatesToTrueIfArgumentMatchesType()
    {
        assertThat(new \stdClass, objectValue());
    }

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

?>