Files
faveo/tests/Unit/ArtisanCommandTest.php
KNaveenraj-ladybird 59bb2de2a4 fix
2023-10-26 22:17:56 +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);
}
}