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 104d45c commit d1a16fcCopy full SHA for d1a16fc
README.md
@@ -143,6 +143,17 @@ $this->seeInDatabaseMany('posts', [
143
]);
144
```
145
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
157
### LogFileAsserts
158
159
#### `assertLogFileExists()`
0 commit comments