webhook-api/src/Deblan/Bundle/ApiBundle/Tests/Controller/DefaultControllerTest.php

18 lines
387 B
PHP

<?php
namespace Deblan\Bundle\ApiBundle\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());
}
}