Trait ObjectAssertTrait
ObjectAssertTrait contains assertions that deal primarily with objects.
Direct Known Users
Peridot\Leo\Interfaces\Assert
Namespace: Peridot\Leo\Interfaces\Assert
Package: Peridot\Leo\Interfaces\Assert
Located at Interfaces/Assert/ObjectAssertTrait.php
Package: Peridot\Leo\Interfaces\Assert
Located at Interfaces/Assert/ObjectAssertTrait.php
public
|
#
isInstanceOf( object $object, string $class, string $message = "" )
Perform an instanceof assertion. |
public
|
#
notInstanceOf( object $object, string $class, string $message = "" )
Perform a negated instanceof assertion. |
public
|
|
public
|
#
notProperty( array|object $object, string $property, string $message = "" )
Perform a negated property assertion. |
public
|
#
deepProperty( array|object $object, string $property, string $message = "" )
Perform a deep property assertion. |
public
|
#
notDeepProperty( array|object $object, string $property, string $message = "" )
Perform a negated deep property assertion. |
public
|
#
propertyVal( array|object $object, string $property, mixed $value, string $message = "" )
Perform a property value assertion. |
public
|
#
propertyNotVal( array|object $object, string $property, mixed $value, string $message = "" )
Perform a negated property value assertion. |
public
|
#
deepPropertyVal( array|object $object, string $property, mixed $value, string $message = "" )
Perform a deep property value assertion. |
public
|
#
deepPropertyNotVal( array|object $object, string $property, mixed $value, string $message = "" )
Perform a negated deep property value assertion. |