Example #1
0
 /**
  * Delete one article author, with
  * no storage connection
  * @expectedException Exception
  */
 public function testDeleteAuthorException()
 {
     $service = new Article();
     $service->setDataSource(new PDOMock());
     $service->deleteAuthor(1);
 }