summaryrefslogtreecommitdiff
path: root/tests/Unit/Exceptions/Handlers/WhoopsTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Unit/Exceptions/Handlers/WhoopsTest.php')
-rw-r--r--tests/Unit/Exceptions/Handlers/WhoopsTest.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/Unit/Exceptions/Handlers/WhoopsTest.php b/tests/Unit/Exceptions/Handlers/WhoopsTest.php
index 261ee83f..4062979b 100644
--- a/tests/Unit/Exceptions/Handlers/WhoopsTest.php
+++ b/tests/Unit/Exceptions/Handlers/WhoopsTest.php
@@ -74,6 +74,14 @@ class WhoopsTest extends TestCase
);
$whoopsRunner
->expects($this->once())
+ ->method('writeToOutput')
+ ->with(false);
+ $whoopsRunner
+ ->expects($this->once())
+ ->method('allowQuit')
+ ->with(false);
+ $whoopsRunner
+ ->expects($this->once())
->method('handleException')
->with($exception);