예제 #1
0
파일: EntryTest.php 프로젝트: travisj/zf
 public function testSetIdThrowsExceptionOnInvalidParameter()
 {
     $entry = new Zend_Feed_Writer_Entry();
     try {
         $entry->setId('');
         $this->fail();
     } catch (Zend_Feed_Exception $e) {
     }
 }