Exemple #1
0
 public function testSetCopyrightThrowsExceptionOnInvalidParam()
 {
     $entry = new Writer\Entry();
     try {
         $entry->setCopyright('');
         $this->fail();
     } catch (Writer\Exception $e) {
     }
 }