php - Load models to model test case in CakePHP -


is there way load many models model test case in cakephp?

i've tried way

class footestcase extends caketestcase {  public function setup() {     parent::setup();      $this->foo = classregistry::init('foo');     $this->bar = classregistry::init('bar');     $this->unit = classregistry::init('unit');  } } 


Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -