Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はcakephpの初心者で、ビューを使用せずにモデルとコントローラーをテストする方法を知りたいですか?
ビューからのfromを使用せずに、モデルとコントローラーを使用してデータの保存をシミュレートする必要があります。必要な値で配列を作成することを考えていましたが、それを行うためのより良い方法があるでしょうか?
次のようなコードを使用して、モデル関数をモックできます。
$model = $this->getMockForModel('MyModel', array('save')); $model->expects($this->once()) ->method('save') ->will($this->returnValue(true));