コード例 #1
0
 /**
  * @covers HtmlElement::getValue
  */
 public function testGetValue()
 {
     $value = "html value";
     $elt = $this->element->setValue($value);
     $actual = $elt->getValue();
     $this->assertInstanceOf("HtmlElement", $elt);
     $this->assertEquals($value, $actual);
 }