File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -22,10 +22,16 @@ protected function dontSeeArtisanOutput($output)
2222
2323 protected function seeArtisanTableOutput (array $ data )
2424 {
25- $ message = 'Failed asserting that artisan table output equals to expected value . ' ;
25+ $ message = 'Failed asserting that artisan table output consists of expected data . ' ;
2626 $ this ->assertEquals ($ data , $ this ->parseArtisanTableOutput (Artisan::output ()), $ message );
2727 }
2828
29+ protected function dontSeeArtisanTableOutput (array $ data )
30+ {
31+ $ message = 'Failed asserting that artisan table output not consists of expected data. ' ;
32+ $ this ->assertNotEquals ($ data , $ this ->parseArtisanTableOutput (Artisan::output ()), $ message );
33+ }
34+
2935 private function parseArtisanTableOutput ($ output )
3036 {
3137 $ parsed = [];
You can’t perform that action at this time.
0 commit comments