Пример #1
0
 /**
  */
 public function test__toString()
 {
     $this->assertInternalType('string', $this->object->__toString());
 }
Пример #2
0
 public function testBogusXml()
 {
     $this->object = new XmlFile(__DIR__ . '/test-bogus.xml');
     $this->setExpectedException('\\Fwk\\Xml\\Exceptions\\XmlErrorException');
     $this->object->open();
 }
Пример #3
0
 /**
  */
 public function testExists()
 {
     $this->assertTrue($this->object->exists());
 }