Skip to content

Commit d1a16fc

Browse files
committed
ITT: Database assertions readme info added.
1 parent 104d45c commit d1a16fc

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,17 @@ $this->seeInDatabaseMany('posts', [
143143
]);
144144
```
145145
146+
#### `dontSeeInDatabaseMany()`
147+
148+
Checks if each of the specified rows is not exist in database:
149+
150+
```php
151+
$this->dontSeeInDatabaseMany('posts', [
152+
['title' => 'Fourth Post!'],
153+
['title' => 'Fifth Post!'],
154+
]);
155+
```
156+
146157
### LogFileAsserts
147158
148159
#### `assertLogFileExists()`

0 commit comments

Comments
 (0)