2025-04-29 23:21:13 -04:00
|
|
|
<?php
|
2025-05-08 11:13:17 -04:00
|
|
|
namespace Tests\Extension;
|
2025-04-29 23:21:13 -04:00
|
|
|
|
|
|
|
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));
|
|
|
|
}
|
2025-05-08 11:13:17 -04:00
|
|
|
}
|