コード例 #1
0
ファイル: DatabaseTest.php プロジェクト: ifcanduela/pew
 /**
  * @expectedException \InvalidArgumentException
  * @expectedExceptionMessage No table provided for method PewDatabase::delete()
  */
 public function testDeleteWithoutSpecifyingTable()
 {
     $db = new Database($this->pdo);
     $db->delete();
 }