]> git.immae.eu Git - github/wallabag/wallabag.git/blame - tests/WallabagGroupBundle/Controller/DefaultControllerTest.php
Created GroupBundle
[github/wallabag/wallabag.git] / tests / WallabagGroupBundle / Controller / DefaultControllerTest.php
CommitLineData
b073a0b4
NL
1<?php
2
3namespace Wallabag\GroupBundle\Tests\Controller;
4
5use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
6
7class DefaultControllerTest extends WebTestCase
8{
9 public function testIndex()
10 {
11 $client = static::createClient();
12
13 $crawler = $client->request('GET', '/');
14
15 $this->assertContains('Hello World', $client->getResponse()->getContent());
16 }
17}