Esempio n. 1
0
 public function testBuildView()
 {
     $view = new TableView();
     $expectedView = clone $view;
     $this->decorator->buildView($view, $this->tableMock);
     $this->fooType->buildView($expectedView, $this->tableMock);
     $this->assertEquals($expectedView, $view);
 }