Files
expose/tests/Feature/InspiringCommandTest.php
Marcel Pociot 2b03398f40 wip
2020-04-14 21:19:23 +02:00

21 lines
374 B
PHP
Executable File

<?php
namespace Tests\Feature;
use Tests\TestCase;
class InspiringCommandTest extends TestCase
{
/**
* A basic test example.
*
* @return void
*/
public function testInspiringCommand()
{
$this->artisan('inspiring')
->expectsOutput('Simplicity is the ultimate sophistication.')
->assertExitCode(0);
}
}