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 578aaac commit 3294cd5Copy full SHA for 3294cd5
README.md
@@ -42,14 +42,14 @@ Provides Laravel-specific testing helpers and asserts.
42
3. That's it! Now you can use any of provided helpers and asserts in your tests:
43
44
```php
45
- class HomePageTest extends TestCase
+ class HelloCommandTest extends TestCase
46
{
47
/** @test */
48
- public function it_shows_three_featured_products()
+ public function it_outputs_hello_world()
49
50
- $this->visit('/');
+ $this->artisan('hello');
51
52
- $this->seeElementTimes('.featured-product', 3);
+ $this->seeArtisanOutput('Hello, World!');
53
}
54
55
```
0 commit comments