<?php
namespace Tlf\Tester\Test;
class Server extends \Tlf\Tester {
/**
* @test that the phptest server works
*/
public function testServer(){
$response = $this->get('/kitchen-sink/');
// echo $response;
$this->str_contains($response, file_get_contents($this->file('App/public/index.php')));
$response = $this->get('/kitchen-sink/article/');
// echo $response;
$this->str_contains($response, file_get_contents($this->file('App/public/article.php')));
}
}