Files
faveo/tests/Unit/ArtisanCommandTest.php
KNaveenraj-ladybird 34307d5368 fix
2023-10-09 17:49:49 +05:30

20 lines
294 B
PHP

<?php
namespace Tests\Unit;
use Tests\TestCase;
class ArtisanCommandTest extends TestCase
{
/**
* A basic test example.
*
* @return void
*/
public function testRouteListCommand()
{
$this->artisan('route:list')
->assertExitCode(0);
}
}