0

我正在尝试在模型中模拟电子邮件组件,但是在第一个函数之后,Cake 给了我一个错误:错误:在非对象上调用成员函数 to()

这是我的测试课:

<?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');

}

蛋糕 v2.3.1。

也许有一种不同的方法可以在这个模拟函数上设置多个方法,但这是基于有人放在网上的解决方案。

(我知道我不应该从这里发送电子邮件,但是对于这个注册功能,我想将其保留在这里,以便在电子邮件未发送时可以回滚事务)。

4

0 回答 0