Пример #1
0
 /**
  * @test
  * @expectedException RuntimeException
  */
 public function tryingToGetTheOpeningTagForAClosingTagThrowsAnException()
 {
     $this->reader->xml('<root><b></b></root>');
     while ($this->reader->read()) {
         if ('root' == $this->reader->localName || XMLReader::END_ELEMENT != $this->reader->nodeType) {
             continue;
         }
         $this->reader->nodeOpenString();
     }
 }