コード例 #1
0
ファイル: ControllerTest.php プロジェクト: nterray/tuleap
 private function WhenICaptureTheOutputOfEditAction()
 {
     ob_start();
     $controller = new Tracker_Hierarchy_Controller($this->request, $this->hierarchical_tracker, $this->factory, $this->dao);
     $controller->edit();
     $content = ob_get_clean();
     return $content;
 }