File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed
Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff 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()`
You can’t perform that action at this time.
0 commit comments