教你一步一步写一个phpunit testcase(4)

发表于:2017-06-01来源:叶左左作者:叶左左点击数: 标签:PHPUnit
__construct ($id, $name, $email) { $this -id = $id; $this -name = $name; $this -email = $email; }} User类很单纯,主要就是建立User对象。 src/PHPUnitEventDemo/Event.php ?php namespace PHPU
__construct($id, $name, $email) { $this->id = $id; $this->name = $name; $this->email = $email; } }

User类很单纯,主要就是建立User对象。

src/PHPUnitEventDemo/Event.php

<?php

namespace PHPUnitEventDemo;

/**
 * Class Event
 *
 * @package PHPUnitEventDemo
 */
class Event {
    /**
     * @var int event id
     */
    public $id;

    /**
     * @var string 事件名
     */
    public $name;

    /**
     * @var string 事件开始时间
     */
    public $startDate;

    /**
     * @var string 事件结束时间
     */
    public $endDate;

    /**
     * @var int 参加者限制
     */
    public $attendLimit;

    /**
     * @var array 参加者列表
     */
    public $attendArr = array();

    /**
     * Event constructor.
     *
     *  



           

原文转自:http://www.jianshu.com/p/ba6829a6f3ec