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