mirror of
https://github.com/jbcr/sitemap-plugin.git
synced 2026-03-26 01:42:06 +01:00
22 lines
450 B
PHP
22 lines
450 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Tests\SitemapPlugin\Controller;
|
|
|
|
final class SitemapStaticControllerApiTest extends AbstractTestController
|
|
{
|
|
use TearDownTrait;
|
|
|
|
public function testShowActionResponse()
|
|
{
|
|
$this->generateSitemaps();
|
|
|
|
$this->client->request('GET', '/sitemap/static.xml');
|
|
|
|
$response = $this->client->getResponse();
|
|
|
|
$this->assertResponse($response, 'show_sitemap_static');
|
|
}
|
|
}
|