mirror of https://github.com/4xmen/xshop.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
384 B
PHTML
21 lines
384 B
PHTML
3 months ago
|
<?php
|
||
|
|
||
|
namespace Tests\Feature;
|
||
|
|
||
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
||
|
use Illuminate\Foundation\Testing\WithFaker;
|
||
|
use Tests\TestCase;
|
||
|
|
||
|
class SiteMapTest extends TestCase
|
||
|
{
|
||
|
/**
|
||
|
* A basic feature test example.
|
||
|
*/
|
||
|
public function test_sitemap(): void
|
||
|
{
|
||
|
$response = $this->get(route('sitemap'));
|
||
|
|
||
|
$response->assertStatus(200);
|
||
|
}
|
||
|
}
|