Ejemplo n.º 1
0
 public function testMakeView()
 {
     $this->type_handler->addType('mock_type', $this->createMockTypeWithMockMethod('makeView', 'make_view'));
     $mock_form_handler = $this->getMockBuilder('AV\\Form\\FormHandler')->disableOriginalConstructor()->getMock();
     $this->assertEquals('make_view', $this->type_handler->makeView(array('type' => 'mock_type'), array(), $mock_form_handler));
 }