Exemplo n.º 1
0
 /**
  * @covers \Magento\Framework\Data\Form\Element\Text::getHtml
  */
 public function testGetHtml()
 {
     $html = $this->_model->getHtml();
     $this->assertContains('type="text"', $html);
     $this->assertTrue(preg_match('/class=\\".*input-text.*\\"/i', $html) > 0);
 }