initial commit

This commit is contained in:
2018-04-13 22:16:40 +02:00
commit 7a85e00c16
14 changed files with 765 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<?php
namespace Chill\TaskBundle\Tests\Controller;
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
class DefaultControllerTest extends WebTestCase
{
public function testIndex()
{
$client = static::createClient();
$crawler = $client->request('GET', '/');
$this->assertContains('Hello World', $client->getResponse()->getContent());
}
}