docker-itmgmt/speedtest/volumes/config/www/tests/Feature/Commands/TestNotificationCommandTest.php
2023-03-29 15:20:05 +00:00

24 lines
465 B
PHP

<?php
namespace Tests\Feature\Commands;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Illuminate\Foundation\Testing\WithFaker;
use Tests\TestCase;
class TestNotificationCommandTest extends TestCase
{
use RefreshDatabase;
/**
* A basic feature test example.
*
* @return void
*/
public function testTestNotificationCommand()
{
$this->artisan('speedtest:notification')
->assertExitCode(0);
}
}