Assert nuevo
This commit is contained in:
10
app/tests/unit/src/ObjectHasMethodTrait.php
Normal file
10
app/tests/unit/src/ObjectHasMethodTrait.php
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
<?php
|
||||||
|
namespace ProVM\Unit;
|
||||||
|
|
||||||
|
trait ObjectHasMethodTrait
|
||||||
|
{
|
||||||
|
public function assertObjectHasMethod(string $method, object $object): void
|
||||||
|
{
|
||||||
|
$this->assertTrue(method_exists($object, $method), sprintf('The object %s does not have the method %s', get_class($object), $method));
|
||||||
|
}
|
||||||
|
}
|
Reference in New Issue
Block a user