2

有人可以告诉我如何在我的 PhpUnit 测试中涵盖以下异常情况吗?

$DB->Insert(db query here...);

$lastInsertID = $DB->InsertID();

if (!$lastInsertID) {
    throw new Exception('Unable to insert new record');
}

提前致谢

4

1 回答 1

3

你可以嘲笑$DB->Insert返回false

于 2013-11-07T07:07:18.290 回答