0

我使用 CakePHP 开发了一个交易应用程序。现在我想使用 PHPUnit 编写单元脚本。我已经在我的服务器上安装了 PHPUnit,并且测试核心测试工作正常。还安装了 Xdebug 用于代码分析。当我要为现有应用程序编写脚本时,它不起作用。我能够在模型中编写登录方法的单元脚本。但是不能为剩余的方法编写脚本。

<?php

App::uses('User', 'Model');

class UserTest extends CakeTestCase {
    public $fixtures = array('app.user');
    public $dropTables = false;
    public function setUp() {
        parent::setUp();
        $this->User = ClassRegistry::init('User');
    }

    public function testLogin() {
         $result = $this->User->find('count', array(
            'conditions' => array(
                // making some assumptions about the test data here
                'email' => 'test.user@gmail.com',
                'password' => 'f1054da373ace628dc73b8ec52eb28072b074940',
            ),));
        $expected = 1;
        $this->assertEquals($expected, $result);
    }

}
?>

它运行良好。但我无法为其余方法编写脚本。

4

1 回答 1

0

尝试使用 bake 和 bake 测试以开始使用正确的测试结构:

cake bake test

这可能有助于按照 Cake 期望的测试结构方式将您推向写入方向。它还将创建空方法来测试控制器中的所有方法。

你能更具体地说明什么不起作用吗?

于 2013-01-15T20:11:26.503 回答