知道解释phpunit测试

时间:2013-02-24 16:17:23

标签: yii tdd phpunit database-connection fixtures

我正在尝试配置灯具和phpunit系统返回下一条消息'.E',但我不知道如何解释它:

  

C:\ kyopol \ Apache 2.22.22 \ htdocs \ demo \ protected \ tests> phpunit unit / EntityTest.php

     

Sebastian Bergmann撰写的PHPUnit 3.7.14。

     

从C:\ kyopol \ Apache读取配置   22年2月22日\ htdocs中\演示\保护\测试\ phpunit.xml

     

.E

     

时间:2秒,内存:6.50Mb

     

有1个错误:

     

1)EntityTest :: testRead未定义变量:newEntity

     

C:\ kyopol \阿帕奇   22年2月22日\ htdocs中\演示\保护\测试\单元\ EntityTest.php:37

     

FAILURES!测试:2,断言:3,错误:1。

接下来,类测试EntityTest.php数据代码:

class EntityTest extends CDbTestCase
{   
public function testCreate()
{
    //CREATE a new Entity
    $newEntity=new Entity;
    $newEntity->setAttributes(
        array(
                'name' => 'Test Entity 1',
                'description' => 'Test entity number one',
                'type_id' => 1,
                'location_lat' => 77,
                'location_lon' => 77,
                'create_time' => '2013-02-16 20:36:00',
                'create_user_id' => 1,
                'update_time' => '0000-00-00 00:00:00',
                'update_user_id' => 0,
            )
    );
    $this->assertTrue($newEntity->save(false));

    //READ a Entity
    $retrievedEntity=Entity::model()->findByPk($newEntity->id);
    $this->assertTrue($retrievedEntity instanceof Entity);
    $this->assertEquals('Test Entity 1',$retrievedEntity->name);
}

public function testRead()
    {
        //READ a Entity
        $retrievedEntity=Entity::model()->findByPk($newEntity->id);
        $this->assertTrue($retrievedEntity instanceof Entity);
        $this->assertEquals('Test Entity 1',$retrievedEntity->name);
    }
}

大写字母'E'和前一个''是什么意思'。' ?

一般情况下:没人能说我怎么知道解释phpunit中的输出消息?

干杯。

1 个答案:

答案 0 :(得分:1)

您的某个测试失败了,这就是您看到 E 的原因。另一个是通过,由表示。 如果测试中有任何错误消息,最后将汇总它们。

失败测试的错误消息是"未定义的变量:newEntity"。

testRead()的第一行是:

$retrievedEntity=Entity::model()->findByPk($newEntity->id);

但您从未在该测试中设置$newEntity