Ejemplo n.º 1
0
 /**
  * Test isPostInDB
  */
 public function testIsPostInDB()
 {
     $dao = new PostMySQLDAO();
     $this->assertTrue($dao->isPostInDB(129, 'twitter'));
     $this->assertTrue(!$dao->isPostInDB(250, 'twitter'));
 }
Ejemplo n.º 2
0
 /**
  * Test isPostInDB
  */
 function testIsPostInDB()
 {
     $dao = new PostMySQLDAO();
     $this->assertTrue($dao->isPostInDB(129));
     $this->assertTrue(!$dao->isPostInDB(250));
 }