コード例 #1
0
ファイル: HTML_TableTest.php プロジェクト: pombredanne/tuleap
 public function itBuildsTableWithBody()
 {
     $this->assertPattern('%<tbody>Bla</tbody>%', $this->html_table->setBody('Bla')->render());
 }
コード例 #2
0
 private function appendTableBody(HTML_Table $html_table)
 {
     $this->current_index = 0;
     $html = '';
     foreach ($this->tree_of_artifacts->getChildren() as $child) {
         $html .= $child->accept($this);
     }
     $html_table->setBody($html);
 }