14 lines
255 B
PHP
14 lines
255 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Shimmie2;
|
|
|
|
class XMLSitemapTest extends ShimmiePHPUnitTestCase
|
|
{
|
|
public function testBasic(): void
|
|
{
|
|
$page = $this->get_page('sitemap.xml');
|
|
$this->assertEquals(200, $page->code);
|
|
}
|
|
}
|