我正在尝试模拟模型中的电子邮件组件,但在第一个函数之后,Cake给了我一个错误:错误:在非对象上调用成员函数()
这是我的测试类:
<?php
App::uses('User', 'Model');
class UserTest extends CakeTestCase {
.
.
// I'm not copying the setUp and tearDown methods here, but they are there.
.
.
public function testEmailTest(){
$CakeEmail = $this->getMock('CakeEmail',array('to','subject'));
$CakeEmail->expects($this->any())
->method('to')
->with($this->equalTo('ant@b.com'));
$CakeEmail->expects($this->once())
->method('subject')
->with($this->equalTo('hi'));
$this->User->CakeEmail = $CakeEmail;
$result = $this->User->emailCat();
}
}
这是用户模型:
public $CakeEmail = null;
public function emailCat() {
if ( !$this->CakeEmail){
$this->CakeEmail = new CakeEmail();
}
$this->CakeEmail->subject('hi')
->to('ant@b.com')
->emailFormat('both')
->config('default')
->send('hi');
}
Cake v2.3.1。
也许有一种不同的方法可以在这个模拟函数上设置多个方法,但这是基于某人在线的解决方案。
(我知道我不应该从这里发送电子邮件,但对于这个注册功能,我想保留在这里,以便我可以回滚交易,如果电子邮件没有被发送)。