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 20e110e commit 704a98aCopy full SHA for 704a98a
tests/Asserts/ArtisanAssertsTest.php
@@ -0,0 +1,24 @@
1
+<?php
2
+
3
+use Illuminated\Testing\Asserts\ArtisanAsserts;
4
5
+class ArtisanAssertsTest extends TestCase
6
+{
7
+ use ArtisanAsserts;
8
9
+ /** @test */
10
+ public function it_has_see_artisan_output_assertion()
11
+ {
12
+ $this->artisan('generic');
13
14
+ $this->seeArtisanOutput('Hello, World!');
15
+ }
16
17
18
+ public function it_has_dont_see_artisan_output_assertion()
19
20
21
22
+ $this->dontSeeArtisanOutput('Hello, Universe!');
23
24
+}
0 commit comments