lithium\test\Group::_init PHP 메소드

_init() 보호된 메소드

auto init for setting up items passed into constructor
protected _init ( ) : void
리턴 void
    protected function _init()
    {
        parent::_init();
        $data = $this->_data;
        $this->_data = array();
        foreach ($data as $item) {
            $this->add($item);
        }
    }