Your IP : 3.145.110.145


Current Path : /home/lentoinv/lentoria.com/vendor/hamcrest/hamcrest-php/tests/Hamcrest/Core/
Upload File :
Current File : //home/lentoinv/lentoria.com/vendor/hamcrest/hamcrest-php/tests/Hamcrest/Core/IsAnythingTest.php

<?php
namespace Hamcrest\Core;

class IsAnythingTest extends \Hamcrest\AbstractMatcherTest
{

    protected function createMatcher()
    {
        return \Hamcrest\Core\IsAnything::anything();
    }

    public function testAlwaysEvaluatesToTrue()
    {
        assertThat(null, anything());
        assertThat(new \stdClass(), anything());
        assertThat('hi', anything());
    }

    public function testHasUsefulDefaultDescription()
    {
        $this->assertDescription('ANYTHING', anything());
    }

    public function testCanOverrideDescription()
    {
        $description = 'description';
        $this->assertDescription($description, anything($description));
    }
}

?>