Projekt

Obecné

Profil

Stáhnout (350 Bajtů) Statistiky
| Větev: | Revize:
1 ea92a5e5 vastja
<?php
2
3
namespace App\Tests\Controller;
4
5
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
6
7
class HatmapControllerTest extends WebTestCase {
8
9
    public function testMainPage() {
10
        $client = static::createClient();
11
        $client->request('GET', '/heatmap');
12
        $this->assertEquals(200, $client->getResponse()->getStatusCode());
13
    }
14
}