Files
sitemap-plugin/tests/Controller/SitemapStaticControllerApiTest.php
2019-07-29 13:49:24 +02:00

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');
}
}