14 lines
246 B
PHP
14 lines
246 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Shimmie2;
|
|
|
|
class StaticFilesTest extends ShimmiePHPUnitTestCase
|
|
{
|
|
public function testStaticHandler(): void
|
|
{
|
|
$this->get_page('favicon.ico');
|
|
$this->assert_response(200);
|
|
}
|
|
}
|