SimpleTest / xdebug テスト クラスに問題があります。具体的には、テスト カバレッジを閉じて結果を保存するためのシャットダウン関数を登録しました。
ただし、これはまだ (正しく) 未到達として表示されます。
if (error_condition) {
die();
} // This line is never actually reached, and shows up in the report as unreached, confusing the automatic analyzers.
exit に「die」を使用するのを避け、代わりに例外を使用する以外に、ラインアップを「テストしない」とマークする方法はありますか?