ikemonn's blog

技術ネタをちょこちょこと

【PHP】Call to undefined method PHPUnit_Framework_TestResult::allCompletlyImplemented()が出た時の対処法

guard-phpunitのファイルのタイポが原因

//250行目、256行目にある以下のメソッド名を編集する

$result->allCompletlyImplemented() 
↓
$result->allCompletelyImplemented()

Completelyのタイポが原因でエラーになってた。

参考

Call to undefined method PHPUnit_Framework_TestResult::allCompletlyImplemented() · Issue #18 · JeffreyWay/Laravel-Testing-Decoded