我有一个名为“SiteController”的控制器。上面有一个显示首页的普通 indexAction。对此进行测试相当容易,但我将如何测试另一个不是带参数操作的函数。假设我有一个名为“sendMail($to, $message)”的函数。我该如何测试?
<?php
class ControllerTest extends Zend_Test_PHPUnit_ControllerTestCase
{
public function testShowCallsServiceFind()
{
$this->dispatch('/index'); // dont care about this...
// what I need is a way to do this:
$res = $controller->sendMail("bla", "bla"); // so that I can test sendMail?
}
}
如何测试 sendMail?