Skip to content

Commit f19d495

Browse files
committed
ITT: ArtisanAsserts readme info added.
1 parent 3420a13 commit f19d495

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ Provides Laravel-specific testing helpers and asserts.
7272
- [seeArtisanOutput](#seeartisanoutput)
7373
- [dontSeeArtisanOutput](#dontseeartisanoutput)
7474
- [seeArtisanTableOutput](#seeartisantableoutput)
75+
- [dontSeeArtisanTableOutput](#dontseeartisantableoutput)
7576
- [CollectionAsserts](#collectionasserts)
7677
- [assertCollectionsEqual](#assertcollectionsequal)
7778
- [assertCollectionsNotEqual](#assertcollectionsnotequal)
@@ -164,6 +165,18 @@ $this->seeArtisanTableOutput([
164165
]);
165166
```
166167
168+
#### `dontSeeArtisanTableOutput()`
169+
170+
Checks if specified data is not seen as artisan table output:
171+
172+
```php
173+
$this->dontSeeArtisanTableOutput([
174+
['Date' => '2016-12-13 13:13:13', 'System' => 'Alpha', 'Status' => 'Enabled'],
175+
['Date' => '2016-12-14 14:14:14', 'System' => 'Beta', 'Status' => 'Enabled'],
176+
['Date' => '2016-12-15 15:15:15', 'System' => 'Gamma', 'Status' => 'Enabled'],
177+
]);
178+
```
179+
167180
### CollectionAsserts
168181
169182
#### `assertCollectionsEqual()`

0 commit comments

Comments
 (0)