Exemplo n.º 1
0
 public function testRender()
 {
     $output = $this->_form->render($this->_createView());
     $document = new \Zend\Dom\Document($output);
     $this->assertCount(1, Query::Execute('//input[@type="checkbox"][@name="DeleteInterfaces"]', $document));
     $this->assertCount(1, Query::Execute('//input[@type="submit"][@name="yes"]', $document));
     $this->assertCount(1, Query::Execute('//input[@type="submit"][@name="no"]', $document));
 }