This commit is contained in:
KNaveenraj-ladybird
2023-09-12 18:19:44 +05:30
parent 5e0f3221b0
commit 59bb2de2a4
3 changed files with 78 additions and 0 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);
}
}