Esempio n. 1
0
 public function testBuildHeaderView()
 {
     $view = array('_tid' => 'xxx', 'a' => 1, 'b' => '2');
     $expectedView = $view;
     $this->decorator->buildHeaderView($view, $this->tableMock);
     $this->fooType->buildHeaderView($expectedView, $this->tableMock);
     $this->assertEquals($expectedView, $view);
 }