Files
faveo/tests/Unit/ArtisanCommandTest.php
KNaveenraj-ladybird 06fd163c60 fix
2023-09-28 10:31:10 +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);
}
}