FuelPHPをやってみる (6) – モデルテストとモック - 例えば以下のようなモデルクラスがあった場合 fuel/app/classes/model/items.php <?php class Model_Items extends Model_Crud { protected static $_table_name = 'items'; public static function findById($id) { $entry = null; try { $entry = static::find_one_by('id', $id); } catch (Database_Exception $e) { Log::warning($e->getMessage()); } return $entry; } } まぁ単純にID値から取得するだけのメソッドを定義する。で問題は実際にfin