for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
/**
* Class SplashMessageTest.
*/
class SplashMessageTest extends TestCase
{
/** @test */
public function shouldGetMessage(): void
$this->assertIsString(\App\Misc\SplashMessage::get());
}
public function shouldGet404Message(): void
$this->assertIsString(\App\Misc\SplashMessage::get404());