示例#1
0
 /**
  * @expectedException \InvalidArgumentException
  * @expectedExceptionMessage No table provided for method PewDatabase::delete()
  */
 public function testDeleteWithoutSpecifyingTable()
 {
     $db = new Database($this->pdo);
     $db->delete();
 }