/** */ public function test__toString() { $this->assertInternalType('string', $this->object->__toString()); }
public function testBogusXml() { $this->object = new XmlFile(__DIR__ . '/test-bogus.xml'); $this->setExpectedException('\\Fwk\\Xml\\Exceptions\\XmlErrorException'); $this->object->open(); }
/** */ public function testExists() { $this->assertTrue($this->object->exists()); }