Example #1
0
 /**
  * Container で定義されている getChildNodes() の仕様通りに動作することを確認します.
  * 
  * @covers Peach\Markup\Comment::getChildNodes
  * @see    Peach\Markup\ContainerTestImpl::testChildNodes
  */
 public function testGetChildNodes()
 {
     $test = new ContainerTestImpl($this, $this->object1);
     $test->testGetChildNodes();
 }
Example #2
0
 /**
  * 追加されたノードの個数を返すことを確認します.
  * 
  * @covers Peach\Markup\ContainerElement::size
  */
 public function testSize()
 {
     $test = new ContainerTestImpl($this, $this->object);
     $test->testSize();
 }