Файл: gapps/vendor/hamcrest/hamcrest-php/tests/Hamcrest/Type/IsObjectTest.php
Строк: 30
<?php
namespace HamcrestType;
class IsObjectTest extends HamcrestAbstractMatcherTest
{
protected function createMatcher()
{
return HamcrestTypeIsObject::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');
}
}