We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d253090 commit 52c3741Copy full SHA for 52c3741
README.md
@@ -185,6 +185,16 @@ $this->dontSeeInDatabaseMany('posts', [
185
]);
186
```
187
188
+### ExceptionAsserts
189
+
190
+#### `willSeeException()`
191
192
+Adding expectation that exception of the specified class, with specified message and specified code will be thrown:
193
194
+```php
195
+$this->willSeeException(RuntimeException::class, 'Oops! Houston, we have a problem!');
196
+```
197
198
### LogFileAsserts
199
200
#### `assertLogFileExists()`
0 commit comments