This commit is contained in:
KNaveenraj-ladybird
2023-09-12 18:19:44 +05:30
parent 7d07d8ed46
commit 34307d5368
5 changed files with 80 additions and 2 deletions

View File

@@ -0,0 +1,19 @@
<?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);
}
}