コード例 #1
0
 /**
  * @covers HtmlElement::setType
  */
 public function testSetType()
 {
     $this->assertEquals("input", $this->element->getType());
     $elt = $this->element->setType("select");
     $actual = $elt->getType();
     $excepted = 'select';
     $this->assertInstanceOf("HtmlElement", $elt);
     $this->assertEquals($excepted, $actual);
 }