示例#1
0
 public function testSetsGeneratorThrowsExceptionOnInvalidUri()
 {
     $writer = new Zend_Feed_Writer();
     try {
         $writer->setGenerator('ZFW', null, 'notauri');
         $this->fail();
     } catch (Zend_Feed_Exception $e) {
     }
 }