Example #1
0
 /**
  * Try to create author with no
  * connection
  * @expectedException Exception
  */
 public function testCreateAuthorException()
 {
     $service = new Article();
     $service->setDataSource(new PDOMock());
     $id = $service->createAuthor(['name' => 'n1', 'avatar' => 'a1', 'info' => 'i1', 'submit' => 'submit']);
     $this->assertGreaterThan(3, $id);
 }