我刚刚开始使用phpunit,我想知道为什么没有assertClassHasMethod()
,类似于assertClassHasAttribute
。
我可能错过了,所以我在这里要求启示☸️。
我目前的解决方法是使用assertTrue()
,但错误消息和手动创建错误消息并不是很好。
$this->assertTrue(
method_exists(Configuration::class, 'all'),
'Failed asserting that class "' . Configuration::class . '" has method "all".'
);