コード例 #1
0
 public function testMarshall22DirAuto()
 {
     $q = new Q('albert');
     $q->setDir(Direction::AUTO);
     $marshaller = $this->getMarshallerFactory('2.2.0')->createMarshaller($q);
     $element = $marshaller->marshall($q);
     $dom = new DOMDocument('1.0', 'UTF-8');
     $element = $dom->importNode($element, true);
     $this->assertEquals('<q id="albert"/>', $dom->saveXML($element));
 }