ServerMinimal.php

<?php

namespace Lia\Test;

class ServerMinimal extends \Tlf\Tester {

    public function testViewPage(){
        $content = $this->get('/cat/', [], "minimal");
        $this->str_contains($content,
            '<h1>Cats are great</h1>',
            '<p>I\'ve always loved',
            '<link rel="stylesheet" href="/lia-resource.',
        );
        echo $content;
    }

    public function testIndex(){
        $content = $this->get('/',[], "minimal");


        $this->str_contains($content,
            '<html>',
            '<h1>Index Page</h1>',
        );
        echo $content;
    }
}