Ejemplo n.º 1
0
 /**
  * Tests the getInput method.
  *
  * @return  void
  *
  * @since   3.1
  */
 public function testGetInput()
 {
     $form = new JForm('form1');
     $this->assertThat($form->load('<form><field name="headertag" type="headertag" label="Header Tag" description="Header Tag listing" /></form>'), $this->isTrue(), 'Line:' . __LINE__ . ' XML string should load successfully.');
     $field = new JFormFieldHeadertag($form);
     $this->assertThat($field->setup($form->getXml()->field, 'value'), $this->isTrue(), 'Line:' . __LINE__ . ' The setup method should return true.');
     $this->assertContains('<option value="h3">h3</option>', $field->input, 'Line:' . __LINE__ . ' The getInput method should return an option with the header tags, verify H3 tag is in list.');
 }
Ejemplo n.º 2
0
 /**
  * Tests the getInput method.
  *
  * @return  void
  *
  * @since   3.1
  */
 public function testGetInput()
 {
     $field = new JFormFieldHeadertag();
     $field->setup(new SimpleXMLElement('<field name="headertag" type="headertag" label="Header Tag" description="Header Tag listing" />'), 'value');
     $this->assertContains('<option value="h3">h3</option>', $field->input, 'The getInput method should return an option with the header tags, verify H3 tag is in list.');
 }