Beispiel #1
0
 /**
  * Тест обработки закрывающего тега.
  * @covers \Epay\Xml::closeTag()
  */
 public function testCloseTag()
 {
     $reflection = new \ReflectionProperty($this->xml, 'parser');
     $reflection->setAccessible(true);
     $parser = $reflection->getValue($this->xml);
     $this->xml->closeTag($parser, 'test');
 }