Пример #1
0
    public function testAccessorHelper()
    {
        $object = new AccessorHelper();
        $this->assertEquals('* @method int getId()
* @method string getName()
* @method bool isName()
* @method $this setName(string $name)
* @method $this addValue(string $value)
* @method string getValue()
* @method bool isValue()
* @method $this removeValue(string $value)
', $object->_generatePhpDoc());
    }