Files
sitemap-plugin/tests/Controller/SitemapStaticControllerApiTest.php
2019-01-23 20:48:47 +01:00

20 lines
414 B
PHP

<?php
declare(strict_types=1);
namespace Tests\SitemapPlugin\Controller;
final class SitemapStaticControllerApiTest extends AbstractTestController
{
use TearDownTrait;
public function testShowActionResponse()
{
$this->client->request('GET', '/sitemap/static.xml');
$response = $this->client->getResponse();
$this->assertResponse($response, 'show_sitemap_static');
}
}