예제 #1
0
파일: SimpleMapTest.php 프로젝트: fwk/xml
 /**
  */
 public function test__toString()
 {
     $this->assertInternalType('string', $this->object->__toString());
 }
예제 #2
0
파일: XmlFileTest.php 프로젝트: fwk/xml
 public function testBogusXml()
 {
     $this->object = new XmlFile(__DIR__ . '/test-bogus.xml');
     $this->setExpectedException('\\Fwk\\Xml\\Exceptions\\XmlErrorException');
     $this->object->open();
 }
예제 #3
0
파일: RSSMapTest.php 프로젝트: fwk/xml
 /**
  */
 public function testExists()
 {
     $this->assertTrue($this->object->exists());
 }