断言该类有方法

时间:2017-05-04 16:19:17

标签: php unit-testing phpunit

我刚刚开始使用phpunit,我想知道为什么没有assertClassHasMethod(),类似于assertClassHasAttribute

我可能错过了,所以我在这里要求启示☸️。

我目前的解决方法是使用assertTrue(),但错误消息和手动创建错误消息并不是很好。

$this->assertTrue(
    method_exists(Configuration::class, 'all'),
    'Failed asserting that class "' . Configuration::class . '" has method "all".'
);

0 个答案:

没有答案