• File: IsNullTest.php
  • Full Path: /home/masbinta/public_html/core/vendor/hamcrest/hamcrest-php/tests/Hamcrest/Core/IsNullTest.php
  • File size: 484 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php
namespace Hamcrest\Core;

class IsNullTest extends \Hamcrest\AbstractMatcherTest
{

    protected function createMatcher()
    {
        return \Hamcrest\Core\IsNull::nullValue();
    }

    public function testEvaluatesToTrueIfArgumentIsNull()
    {
        assertThat(null, nullValue());
        assertThat(self::ANY_NON_NULL_ARGUMENT, not(nullValue()));

        assertThat(self::ANY_NON_NULL_ARGUMENT, notNullValue());
        assertThat(null, not(notNullValue()));
    }
}