You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
374 B

4 years ago
  1. <?php
  2. namespace Tests\Feature;
  3. use Tests\TestCase;
  4. class InspiringCommandTest extends TestCase
  5. {
  6. /**
  7. * A basic test example.
  8. *
  9. * @return void
  10. */
  11. public function testInspiringCommand()
  12. {
  13. $this->artisan('inspiring')
  14. ->expectsOutput('Simplicity is the ultimate sophistication.')
  15. ->assertExitCode(0);
  16. }
  17. }