someRssFactory = new UniversalRssFactory(); $this->filename = dirname(__FILE__) . "/../../data/GeoRss_PortalU.xml"; $this->geoRss = $this->someRssFactory->createFromUrl($this->filename); } public function tearDown () { unset($this->someRssFactory); } public function testCreateFromUrl() { $this->assertNotNull($this->geoRss); } public function testIsGeoRss() { $this->assertEquals("GeoRss", get_class($this->geoRss)); } } ?>