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