Ejemplo n.º 1
0
 public function testSetDateCreatedThrowsExceptionOnInvalidParameter()
 {
     $entry = new Zend_Feed_Writer_Entry();
     try {
         $entry->setDateCreated('abc');
         $this->fail();
     } catch (Zend_Feed_Exception $e) {
     }
 }